Home > Software engineering >  How do i reduce the the difference between space of two ul
How do i reduce the the difference between space of two ul

Time:06-13

I have make two ul in which

  1. having the logo at center
  2. having all the required nav_links but rendering the navlinks show some gap. between them

I want to no gap between these list.

enter image description here

If you want to obtain this result you just need to set the margin of the ul to 0;

ul { margin: 0;}

CodePudding user response:

Do you want your list looks like this?enter image description here

If yes just remove the padding you have given for li.

  • Related