I need to change the color of the header
of the site, but when I apply the background color in header
, the color only takes up the space of the content, thus getting the color of body
at the top and bottom like this:
<body><headerclass="container-fluid topo">
<img src="img/selo.png" class="img-fluid mx-auto float-right selo">
<img src="img/logo.png" class="img-fluid mx-auto d-block mt-4" alt="Logo DoUp">
<h2 class="text-center text-dark ">Seu curso de espanhol em 12 meses</h2>
</header>
<div class="meio mt-2">
Css:
header{
background-color: #ffc107;
}
How to put this yellow to cover the whole top?