Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のドロップダウンを1ページの4箇所で使用していますが、ASPコントロールを使用して、CSSで行うように1箇所でフォントサイズを定義する方法がありますFont-Size。ASP.NETページでそれを行うことは可能ですか?
Font-Size
<asp:DropDownList Font-Size="XX-Small" runat="server" ID="SampleDropDown" > </asp:DropDownList>
ありがとう
インラインスタイルよりもCSSクラス名+スタイルシートを使用することを常にお勧めします。
<asp:DropDownList CssClass="dropDownListA" runat="server" ID="SampleDropDown" > </asp:DropDownList>
CSS:
.dropDownListA { font-size:12px; }