Hello everyone,
I’m asking for your help to code this in CSS. I’m really struggling with it.
Currently I’m using flexbox but the text (p) goes with it which is not needed. I’m having difficulties coding on know to place the text below the header. please help
here is the html code
<header>
<h1>A VERY LONG HEADER</h1>
<p>A SHORT TEXT</p>
<nav>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
here is the css code
header {
display: flex;
}
.menu {
display: flex;
}
