Why is there a gap between image and navigation bar

前端 未结 3 1019
离开以前
离开以前 2021-01-28 00:58

Hi I\'m having some trouble removing a small gap between an image and my navigation bar. I\'ve honestly tried just about everything i can think of. Setting inline-blocks on my u

3条回答
  •  臣服心动
    2021-01-28 01:23

    is this what you mean? You can target the nav class on your ul and adjust the default margins that are being assigned

    ul.nav{
      margin: 10px 0;
    }
    

    JSFIDDLE

提交回复
热议问题