如何选择CSS中父元素的后代的多个元素?
在同一DIV下的多个元素如何无需重复DIV的名称?我知道我能够使用以下CSS代码选择父级的多个元素,
.container h3,
.container p {
text-align: left;
}
但是,是否有其他短途方法来定位h3
和p
标签在下.Container
div?
How can target multiple elements under the same div without having to repeat the div's name? I know I am able to select multiple elements of a parent div using the following CSS code,
.container h3,
.container p {
text-align: left;
}
But, is there any other short-hand way to target the h3
and p
tags under the .container
div?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用 - 相对较新的 -
:is()
语法:参考:
I'd suggest using the – relatively new –
:is()
syntax:References:
:is()
.在香草CSS中,您拥有的是最好的方法。如果您使用CSS预编译器,例如 sass ,您可以改为嵌套对象,以使您的代码看起来像这样看起来像这样:
In vanilla CSS, what you have is the best way of doing it. If you use a css precompiler such as SASS, you can instead nest objects so that your code could look like this: