I have a simple div:
<div class="quadrant">
<h1>X</h1>
</div>
//CSS
.quadrant {
background-color: #E7E7E7;
margin: auto;
height: 40%;
width: 20%;
}
When I have some element inside this div, as in the case above (an H1 with an X) it normally appears
But when I shoot X (which will be the default of what I'm doing) it simply disappears.
I would like that when loading the page, it would appear even if it did not contain any content, since the content of the page will be added later by the user.