常见块元素和内联元素

块元素

段落 div p
列表 ul ol li dl dd dt
表单 form fieldset legend optgroup option output
标题 h1-h6
骨架 html body
h5容器 header footer nav aside section article
h5多媒体 figure figcaption
h5功能性 summary details
其他 hr pre bolckquote address

内联元素

表单
input(inline-block)
button(内联替换元素)
select(内联替换元素)
textarea(内联替换元素)
img(内联替换元素)

其他 a span br

行内替换元素, height/width/padding/margin均可用,类似于inline-block元素

行内非替换元素,margin top/bottom无效,padding和margin left/right有效

原文地址:https://www.cnblogs.com/mengff/p/6220412.html