Demo
Summary
Less nesting example:
#my-section {
h1 {
color: red;
}
p {
color: blue;
}
}
Compiled CSS:
#my-section h1 {
color: red;
}
#my-section p {
color: blue;
}
To see a live example of this code, view the Demo section below.
Details
In Less, you can use nesting instead of writing descendant selectors. To start, write out the main selector:
#my-selection {
}
Then add your other selectors and rules inside, like this:
#my-selection {
h1 {
color: red;
}
p {
color: blue;
}
}
To make things easier to read, indent the nested rulesets.
The nesting will result in the following compiled CSS:
#my-section h1 {
color: red;
}
#my-section p {
color: blue;
}
Nesting allows you to create multiple descendant selectors in a more compact form, saving you keystrokes.
Exercises
First, recreate the Less code in the embedded CodePen demo.
Then try changing the selectors, properties, or values.