I created a navigation bar using an unordered list (ul) with list items (li). However, I encountered an issue where the items were displaying in reverse order until I applied the following CSS:
.nav-bar .btn{
float: left;
}
.nav-bar ul{
float: right;
}
Unfortunately, this caused all the buttons to overlap and appear too small. Does anyone have a solution to this problem?