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.
所以我在我的 CSS 中设计了一个 HTML 列表,如下所示:
.ulClaims li { font-weight: bold; color: #5c6467; font-size: 14px; }
我的一些“ li ”标签中有 asp:textboxes。无论如何我可以在我的 .ulClaims 类中为它们设置样式以使事情变得简单吗?
您的 CSS 定义仅将样式应用于lis 的后代.ulClaims。要设置“文本框”的样式,请使用类似于:
li
.ulClaims
.ulClaims li input[type="text"] { /* ... definitions ... */ } .ulClaims li textarea { /* ... definitions ... */ }
这将直接针对任何input type="text"ortextarea的后代.ulClaims li。
input type="text"
textarea
.ulClaims li