gpt4 book ai didi

html - 想在 html 中使用多个吗?

转载 作者:太空宇宙 更新时间:2023-11-04 13:12:13 26 4
gpt4 key购买 nike

我有一种情况,我想使用多个空格分隔 html 中的元素。除了使用多个   之外还有什么办法吗?

HTML:

<td width="10%">
<a href=""><i class="glyphicon glyphicon-envelope"></i></a>View&nbsp;&nbsp;&nbsp;
<a href=""><i class="glyphicon glyphicon-link"></i></a>Append&nbsp;&nbsp;&nbsp;
<a href=""><i class="glyphicon glyphicon-trash"></i></a>Delete
</td>

最佳答案

我自己想通了:这可以通过以下方式实现,具体取决于您需要多少空间:

&nbsp;    - single space
&thinsp; - thin space
&ensp; - en space(half the point size of the font)
&emsp; - 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&thinsp;
<a href=""><i class="glyphicon glyphicon-link"></i></a>Append&thinsp;
<a href=""><i class="glyphicon glyphicon-trash"></i></a>Delete
</td>

希望这对您有所帮助。

关于html - 想在 html 中使用多个吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31856117/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com