如何抑制两个HTML元素之间的空间

时间:2013-10-22 19:22:17

标签: html

我需要压制$和金额之间的空格 现在它显示23美元它应该显示23美元

 <span style="color: Red;white-space: nowrap; font-size: 15px">$
                                                <%= Html.Encode(String.Format("{0:F}", item.cy_list_price))%></span>

1 个答案:

答案 0 :(得分:5)

您的标记有空格,因此会渲染空间。如果你不想要它,不要把它放在那里:

<span style="color: Red;white-space: nowrap; font-size: 15px">$<%= Html.Encode(String.Format("{0:F}", item.cy_list_price))%></span>

HTML会抑制额外的空格,但会保留一个空格。