0
Gentlemen, great day, great day, Please, I am working on a particular project, and slowly creating the page. I want to put the lis to the right, but with this codígo can not, the documents say that employee, but I have not found the solution. How could you proceed?
This is html and css:
<nav class="content">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Sobre</a></li>
<li><a href="#">Contato</a></li>
</ul>
</div>
.content ul {
font-family: 'Montserrat', sans-serif;
font-size: 22px;
display: inline-flex;
}
content ul li {
list-style-type: none;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-end;
align-items: baseline;
align-content: flex-end;
margin: 0 1em;
}
Gee Thank you. The div was unintentionally in the sorry code, it’s much simpler than the way I tried. I appreciate the help.
– Alberty Lucas
@Albertylucas without problems my dear, things with CSS tend to be simpler than we think...
– hugocsl