如何调整标签的字符间距

Ali*_*ice 1 c# asp.net label

如何在标签控件中调整字符间距.酒店的窗户没有这样的房产.

<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)

Gra*_*ICA 5

您可以使用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)