如何组合多个 CSS 规则?
div#id_div_allposts {
width: 100%;
}
div.class_div_post {
width: 100%;
}
div.class_div_editdelete {
width: 100%;
}
我怎样才能把它写成一行?
如何选择带有 id 和 class 的 html 标签?
div#id_div_allposts {
width: 100%;
}
div.class_div_post {
width: 100%;
}
div.class_div_editdelete {
width: 100%;
}
How can i write it in one line ?
And what's the way to select a html tag with id and class ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您所要做的就是用逗号分隔它们,例如
All you have to do is separate them with a comma e.g
您可以通过逗号将
CSS
中的多个选择器分组。注意: 逗号从一开始就启动一个全新的选择器。
You can group multiple selectors in
CSS
via a comma.Note: The comma starts an entirely new selector from the very start.
使用逗号分隔多个声明
选择带有 id 和 class 的 html 标签将是
Use the comma to separate multiple declarations
Selecting an html tag with and id and class would be
试试这个:
或者假设你希望所有 div 的宽度都是 100% 那么......
Try this:
or assuming that you want all div to have width 100% then...