Issue
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.
Solution
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
}
Answered By - orghu
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.