如何组合多个 CSS 规则?

发布于 2024-12-08 13:23:49 字数 218 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

薄荷港 2024-12-15 13:23:49

您所要做的就是用逗号分隔它们,例如

div#id_div_allposts,
div.class_div_post,
div.class_div_editdelete {
    width:100%;
}

All you have to do is separate them with a comma e.g

div#id_div_allposts,
div.class_div_post,
div.class_div_editdelete {
    width:100%;
}
抽个烟儿 2024-12-15 13:23:49
div#id_div_allposts, div.class_div_post, div.class_div_editdelete {
    width: 100%;
}

您可以通过逗号将 CSS 中的多个选择器分组。

注意: 逗号从一开始就启动一个全新的选择器。

div#id_div_allposts, div.class_div_post, div.class_div_editdelete {
    width: 100%;
}

You can group multiple selectors in CSS via a comma.

Note: The comma starts an entirely new selector from the very start.

筑梦 2024-12-15 13:23:49

使用逗号分隔多个声明

div#id_div_allposts, div.class_div_post, div.class_div_editdelete {
    width: 100%;
}

选择带有 id 和 class 的 html 标签将是

div#ID.class

Use the comma to separate multiple declarations

div#id_div_allposts, div.class_div_post, div.class_div_editdelete {
    width: 100%;
}

Selecting an html tag with and id and class would be

div#ID.class
狂之美人 2024-12-15 13:23:49

试试这个:

div#id_div_allposts, div.class_div_post, div.class_div_editdelete {
    width: 100%;
}

或者假设你希望所有 div 的宽度都是 100% 那么......

div{
    width: 100%;
}

Try this:

div#id_div_allposts, div.class_div_post, div.class_div_editdelete {
    width: 100%;
}

or assuming that you want all div to have width 100% then...

div{
    width: 100%;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文