如何调整标签控件中的字符间距。属性窗口中没有这样的属性。
<asp:Label ID="label01" runat="server" Text="EXPLORATIONS" Font-Bold="True"
Font-Names="Verdana" Font-Size="Small" ForeColor="#999999"></asp:Label>
您可以使用 CSSletter-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>
您可以将 aCssClass
应用于您Label
可以在其中指定字母间距的控件。
像这样的东西
<style type="text/css">
.spacing
{
letter-spacing:12px;
}
</style>
<asp:Label ID="Label1" runat="server" Text="Your nice text line"
CssClass="spacing" />