-2
Guys, I created a footer with the footer but I want the text on the left to be aligned with the one on the right same height and same line.
My CSS:
.rodape {
width:100%;
height:40%;
background-color:black;
border: 1px solid #fff;
}
.title_rodape{
font-size:24pt;
color:#808080;
padding-top:20px;
text-align:left;
padding-left:35px;
}
.text_left_rodape{
font-size:16pt;
color:#808080;
padding-top:20px;
text-align:left;
padding-left:45px;
}
.text_right_rodape{
font-size:16pt;
color:#808080;
padding-top:20px;
text-align:right;
padding-right:45px;
}
print of how you are:
Print how I want it to look:
My HTML:
<footer class="rodape">
<h1 class="title_rodape">Duvidas? Entre em contato.</h1>
<p class="text_left_rodape">Perguntas frequentes</p>
<p class="text_left_rodape">Conta</p>
<p class="text_left_rodape">Privacidade</p>
<p class="text_right_rodape">Centro de ajuda</p>
<p class="text_right_rodape">Entre em contato</p>
<p class="text_right_rodape">Avisos legais</p>
</footer>
It worked, thank you
– user187547
You’re welcome to comment on your reasons and help us make a better community.
– fellyp.santos