Remove space above and below

tag HTML

前端 未结 7 1744
眼角桃花
眼角桃花 2020-11-30 07:10

Take this ul for example:

7条回答
  •  醉话见心
    2020-11-30 08:00

    Look here: http://www.w3schools.com/tags/tag_p.asp

    The p element automatically creates some space before and after itself. The space is automatically applied by the browser, or you can specify it in a style sheet.

    you could remove the extra space by using css

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

    or use the element which has no default margins and is an inline element.

提交回复
热议问题