Home > Software engineering >  I need help spacing text apart on a nav bar
I need help spacing text apart on a nav bar

Time:11-14

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

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
}
  • Related