ラベル コントロールの文字間隔を調整するにはどうすればよいですか。プロパティウィンドウにそのようなプロパティはありません。
<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>
CssClass
あなたはあなたが文字間隔を与えることができるあなたのLabel
コントロールにを適用することができます。
このようなもの
<style type="text/css">
.spacing
{
letter-spacing:12px;
}
</style>
<asp:Label ID="Label1" runat="server" Text="Your nice text line"
CssClass="spacing" />