I'm trying to put an image so that it looks similar to this:
Butitisnotwhathappens,butnoticehowmypageis;
<divclass="container-fluid">
<div id="conteudo">
<div id="apresentacao">
<div id="frase1">
Bem vindo ao Agendador de salas
</div>
</div>
<div id="apresentacao2">
Fique atento as regras para agenda as salas para reunião.
</div>
</div>
</div>
See how my CSS is;
#frase1{
position: relative;
top: 0px;
width: 300px;
height: 20px;
border: 2px solid #fff;
background-color:#000000;
}
It was for the background to have gone black. How do I do what I need?
I tried to make the suggested changes, but I was not successful;