How to control the spacing of words with CSS:
Sometimes the default word spacing does not meet the actual needs, may require artificial control, the following is a brief introduction to how to achieve this effect.
You can set word spacing using the Letter-spacing property. The code example is as follows:
<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><Metaname= "Author"content= "http://www.softwhy.com/" /><title>Ant Tribe</title></Head><Body><ul> <Listyle= "LETTER-SPACING:2PX;">Welcome to the Ant tribe.</Li> <Listyle= "letter-spacing:5px;">Welcome to the Ant tribe.</Li> <Listyle= "LETTER-SPACING:8PX;">Welcome to the Ant tribe.</Li> <Listyle= "LETTER-SPACING:12PX;">Welcome to the Ant tribe.</Li></ul></Body></HTML>
The original address is: http://www.51texiao.cn/div_cssjiaocheng/2015/0503/600.html
The original address is: http://www.softwhy.com/
How to control the spacing of words with CSS