Why Ul upper white space

后端 未结 2 1839
难免孤独
难免孤独 2021-01-28 02:35

When I put unordered list

    then why top bar goes down ?? I cannot find the reason behind this.Please tell me how to fix this problem ?

    http://jsfiddle.net/fL

    2条回答
    •  广开言路
      2021-01-28 03:12

      The ul element has margin-top by default from browser. To remove that, add the style

      ul {
          margin-top: 0;
      }
      

    提交回复
    热议问题