开发者

How to apply common style for controls through out the project

I have defined a class in the Default.css and i wanted to use the same style for all the asp:textbox how should i do it

.myTextBox {        
color : #747862开发者_JS百科;

}


Try this style:

input[type=text] { color: #747862; }


you can add css class to the text box eg. TextBox ID="txb1" CssClass="myTextBox "

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜