remove space between paragraph and unordered list

前端 未结 8 2209
情歌与酒
情歌与酒 2021-01-01 10:17

Text

  • One

Text 2

How do i remove the vertical space between par

8条回答
  •  没有蜡笔的小新
    2021-01-01 10:46

    Every browser has some default styles that apply to a number of HTML elements, likes p and ul. The space you mention is likely created because of the default margin and padding of your browser. You can reset these though:

    p { margin: 0; padding: 0; }
    ul { margin: 0; padding: 0; }
    

    You could also reset all default margins and paddings:

    * { margin: 0; padding: 0; }
    

    I suggest you take a look at normalize.css: http://necolas.github.com/normalize.css/

提交回复
热议问题