.nesting-example1 {
padding: 1rem;
display: flex;
.no-testing {
display: none;
}
& div {
padding: 2em;
height: 5em;
width: 100%;
}
.s1 {
background: green;
position: relative;
}
.s2 {
background: orange;
}
.s1::after {
content: 'Your browser supports nesting';
position: absolute;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
}