<style>
.demo_css_sprt, .demo_css_sprt div {
border: dotted 1px red;
padding: 1em;
}
.demo_css_sprt div {
margin: 1em 0;
}
.demo_css_sprt div:empty {
background: mistyrose;
}
.demo_css_sprt p {
border: dashed 1px blue;
margin-bottom: 1em;
padding: 1em;
}
</style>
<div class="demo_css_sprt">
要素1
<div>要素2</div>
<div>
<div></div>
</div>
<div></div>
<p></p>
</div>