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.
我在 asp.net 和 c# 中工作。
我的应用程序中有一个名为 STYLE.css 的 CSS 样式表,并且该样式表中有一些类。我想在我的代码隐藏中更改这些类的样式。如何做到这一点。给你的建议。
样式.CSS:
.someclass { //some attributes }
我想在代码隐藏中更改someclass Class 的属性。
最好控制css文件中的样式。所以在css中创建2个类并更改控件在后面代码中使用的类。
这意味着您可以将样式与功能分开,并使代码的维护更容易。因为当您决定想要稍微不同的颜色时,您只需要更改 css 条目而不是重新编译您的应用程序/项目。