word-spacing:字母间隔
亦可以设置margin或者padding
例如
<li>足彩</li><li>高频</li>可以在css里面设置li
让margin
5px;这两个词就会有间隔。如果要让字之间间隔
可以直接定义样式letter-spacing:2px
会让所有字分开距离
CSS用word-spacing属性来设置单词的间距。例如: p.spread {word-spacing: 30px} p.tight {word-spacing: -0.5em} This is some text. This is some text. This is some text. This is some text.效果如图: 可以看到,word-spacing属性既可以...