So im making a nav bar in my project but the text on it are too close together beneath each other.

I tried changing text size but It now looks weird.
CodePudding user response:
I'm assuming that you are using an unordered list as nav, if so, you may add a margin-bottom to each list element, in the CSS, like so:
ul li{
margin-bottom: 20px
}
