Here's the code I'm working with:
.bottombarelementL {
display: inline-block;
margin-right: 10px;
transition-property: all;
transition-duration: 1s;
float: left;
margin-left: 20%;
}
.bottombarelementL:hover {
display: inline-block;
margin-right: 10px;
font-size: 20px;
}
.bottombarelementR {
display: inline-block;
margin-right: 10px;
transition-property: all;
transition-duration: 1s;
float: right;
margin-right: 20%;
}
.bottombarelementR:hover {
display: inline-block;
margin-right: 10px;
font-size: 20px;
}
<div class="bottomnavleft">
<ul class="bottomleft">
<li class="bottombarelementL">About Us</li>
<li class="bottombarelementL">Affiliates</li>
</ul>
</div>
<div class="bottomnavright">
<ul class="bottomright">
<li class="bottombarelementR">TOS</li>
</ul>
</div>
I'm trying to achieve a two-row bottom navbar. Any tips or guidance would be greatly appreciated as I am new to HTML and CSS, only 13 years old, and eager to learn and improve! I'd like the bottom text to be displayed in two columns