是否可以像链接(a[href="/"]{_/*CSS declarations.*/_}
)那样这样做?
例如:
#example > .meow span[style="color:red;"] {
text-transform: lowercase;
}
#example > .woof span[title="I'm a dog."] {
color: blue;
text-decoration: underline;
}
答案 0 :(得分:3)
是的,你这样做:
见下面的代码
a[href="https://www.css-tricks.com"] {
color: #E18728;
font-size: 1.5em;
}
#example > .meow span[style="color: red;"] {
text-transform: lowercase;
font-size: 45px;
}
<p><a href="https://www.css-tricks.com">CSS-Tricks</a></p>
<p><a href="https://www.css-tricks.com/almanac">CSS-Tricks Almanac</a></p>
<hr>
<div id="example">
<div class="meow">
<span style="color: red;">TEST</span>
</div>
</div>
有关更多目的地,请点击此处 - post here