的意义是什么,classname .classname在css中是什么?[副本]

ebdffaop  于 2023-05-02  发布在  其他
关注(0)|答案(2)|浏览(118)

此问题已在此处有答案

What's the difference between CSS classes .foo.bar (without space) and .foo .bar (with space)(6个回答)
11小时前关闭

.question-list .options {
            min-width: 240px;
        }

最大宽度属性将应用于两个(问题列表。选项)或否?

nle07wnf

nle07wnf1#

max-width属性将应用于类为.options的元素,该元素位于类为.question-list的元素内部**

<div class="question-list"><div class="options">this element has max-width</div></div>
iqxoj9l9

iqxoj9l92#

min-width属性将应用于类为.options的元素中的类为.options的元素

<div class="question-list"><div class="options">this element has been targeted</div></div>

为了同时针对.question-list.options,您应该在它们之间放置逗号:

.question-list, .options {
    min-width: 240px;
}

相关问题