Why Ul upper white space

后端 未结 2 1856
难免孤独
难免孤独 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/

    提交回复
    热议问题