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.
我在一页的 4 个地方使用下面的下拉菜单,有没有一种方法可以在一个地方定义字体大小,就像我们在 CSS 中那样,使用 ASP 控件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; }