I have explored various solutions on stackoverflow, but none of them seem to work for me. I am struggling with expanding the content of the "Section" element when the page is empty.
Check out my JsFiddle Project here
HTML
<body>
<header>
<ul class="menu">
<li><a href="">Option 1</a></li>
<li><a href="">Option 2</a></li>
<li><a href="">Option 3</a></li>
<li><a href="">Option 4</a></li>
<li id="home" class="active"><a href="">Home</a></li>
</ul>
</header>
<section>
<h1 id="titolo">Main Title<br>Sub title</h1>
<p>A lot of Content</p>
</section>
<footer>
<p>Name Surname <br> <a href="mailto:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="96eff9e3e4f3fbf7fffad6fbf7fffab8f5f9fb">[email protected]</a>"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5c2533292e39313d35301c313c31373537353c29353939">[email protected]</a></a></p>
</footer>
</body>
</html>
CSS
section {
margin: 44px 10%;
background-color:#ffffff;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.40);
padding:1px;
}