首页 > 编程 > .NET > 正文

C#.NET的Web控件是否支持CSS

2024-07-10 13:12:50
字体:
来源:转载
供稿:网友

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>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表