主页 > 编程资料 > C# >
发布时间:2015-09-26 作者:网络 阅读:212次

Web控件是否支持样式表(CSS)呢?

支持,所有的Web控件都从基类System.Web.UI.WebControls.WebControl中继承了一个叫做CssClass的属性。

示例源代码:

<html> 
<head> 
<style> 
.Input { font: 10pt verdana; color: red; } 
</style> 
</head> 
<body> 
<form runat=&quot;server&quot;> 
<asp:TextBox CssClass=&quot;Input&quot; RunAt=&quot;server&quot; /> 
</form> 
</body> 
</html>


关键字词: