Why Ul upper white space

后端 未结 2 1840
难免孤独
难免孤独 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:00

      use this for removing padding and margin which is given by browsers

      *{
          margin:0;
          padding:0;
      }
      

      you will get more information on reset css here

      here are the list of css styles used to reset

      http://www.cssreset.com/

      0 讨论(0)
    • 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;
      }
      
      0 讨论(0)
    提交回复
    热议问题