如何在标签控件中调整字符间距.酒店的窗户没有这样的房产.
<asp:Label ID="label01" runat="server" Text="EXPLORATIONS" Font-Bold="True"
Font-Names="Verdana" Font-Size="Small" ForeColor="#999999"></asp:Label>
Run Code Online (Sandbox Code Playgroud)
您可以使用CSS letter-spacing属性:
<asp:Label ID="label01" runat="server" Text="EXPLORATIONS" Font-Bold="True" Font-Names="Verdana" Font-Size="Small" ForeColor="#999999" CssClass="YourStyle" />
<style>
.YourStyle
{
letter-spacing: 4px;
}
</style>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1681 次 |
| 最近记录: |