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 选择器 - 如何在 CSS 中选择“for”?
我有以下html。我可以根据标签的 for 属性来定位标签吗(所以只定位这个标签)?
<label for="something">Text</label>
您可以通过以下方式定位属性:
label[for="something"] { /* woohoo! */ }
For代表属性名称 ,="value"代表其值。