用户控件如何调用或定义css?
用户控件如何调用或定义css?没有cssclass属性,直接用style内联方式也无效,外部调用也不起作用。
aspx
------
<div id="RightContent">
<uc2:ucShowNotice ID="Uc1" runat="server"/>
</div>
css
------
#RightContent {position:relative;margin:0 20px;}/*有效*/
#RightContent #Uc1 {position:absolute;top:50px;}/*无效*/
--------------------编程问答-------------------- 你在用户控件那个见面用内敛吧,在原本界面设置好就行。 --------------------编程问答-------------------- 用户控件.服务器控件加css --------------------编程问答-------------------- 你在用户控件里面设置好样式 --------------------编程问答--------------------
不懂,学习 --------------------编程问答-------------------- 正规的asp.net知识,是使用theme。跟什么用户控件的没有关系。 --------------------编程问答-------------------- #RightContent #Uc1
你确定 浏览器端 uc1 是 ID名称? --------------------编程问答-------------------- 浏览页面后
查看下页面的源文件
看看服务器端控件UC1的客户端ID还是不是UC1
补充:.NET技术 , ASP.NET