我有一种情况,我想使用多个空格分隔 html 中的元素。除了使用多个
之外还有什么办法吗?
HTML:
<td width="10%">
<a href=""><i class="glyphicon glyphicon-envelope"></i></a>View
<a href=""><i class="glyphicon glyphicon-link"></i></a>Append
<a href=""><i class="glyphicon glyphicon-trash"></i></a>Delete
</td>
我自己想通了:这可以通过以下方式实现,具体取决于您需要多少空间:
- single space
  - thin space
  - en space(half the point size of the font)
  - em space(point size of the font)
引用:http://www.w3.org/MarkUp/html3/specialchars.html
这是我所做的:
<td width="10%">
<a href=""><i class="glyphicon glyphicon-envelope"></i></a>View 
<a href=""><i class="glyphicon glyphicon-link"></i></a>Append 
<a href=""><i class="glyphicon glyphicon-trash"></i></a>Delete
</td>
希望这对您有所帮助。
我是一名优秀的程序员,十分优秀!