我需要压制$和金额之间的空格 现在它显示23美元它应该显示23美元
<span style="color: Red;white-space: nowrap; font-size: 15px">$
<%= Html.Encode(String.Format("{0:F}", item.cy_list_price))%></span>
答案 0 :(得分:5)
您的标记有空格,因此会渲染空间。如果你不想要它,不要把它放在那里:
<span style="color: Red;white-space: nowrap; font-size: 15px">$<%= Html.Encode(String.Format("{0:F}", item.cy_list_price))%></span>
HTML会抑制额外的空格,但会保留一个空格。