html - Issue with white space -
i have no idea why there white space between contact , data under it. tried 0px margin everywhere white space still there. idea how solve?
css: http://pasted.co/7d58de85
thanks
a screenshot of part reffering to
<header> <section id="logo"> <img src="logo2.png" id="logoimg" alt="logo"> </section> <nav> <ul> <a href="#top"><li>home</li></a> <a href="#agenda"><li>about me</li></a> <a href="#hettheater"><li>projects</li></a> <a href="#edge2"><li>contact</li></a> </ul> </nav> <footer> <p id="contactgegevens"> xxxxxx xxxxxxx xxxxxxxxx@hotmail.com tel: xx xxxxxxxx </p> </footer> </header>
you're defining height
(60vh
) nav
, that's causing issue.
removing it, causes height auto, , white space disappears
nav{ margin:0px; width:230px; min-width:150px; }
here's codepen.
the defined height
causing responsive issues.
Comments
Post a Comment