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.
我们可以让变量传递值 Black 并且它将在 css 中条件
我有一个母版页:在我正在使用的那个页面中
一个进入数据库的变量,如果变量数据的值为黑色,则在 css 文件中检查该值,然后显示动态背景颜色。
css 与 asp.net
abc.cs 如果选择了变量 getcolor ="Black" 或除 css 代码之外的任何值,则此处为一个变量 getcolor
我想要
如果(getcolor =“黑色”){}否则{
}
可能是,你可以写你的背景风格内联
<div style="background-color: <% If getcolor = "Black" Then Response.Write "black" Else Response.Write "AnyColor" %>;">