Is there a way to have bigger containers in css [closed]

0

I was curious about this I want my CSS to be cleaner and want each part to be in a big bracket but it turns out that you can't do it so I wonder if there is any other way to have each part of CSS in a chunk I would love to find a way that works like HTML: a big bracket that can be open or close

css
2021-11-24 05:47:39
1

0

Have a look at SCSS. It allows you to write CSS code like this:

<div id="parent"> Div_parent 
    <div id="child"> Div_child </div>
</div>
#parent {
    background-color: red;

    #child {
        background-color: blue;
    }
}
2021-11-24 05:54:51

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................