单行文本元素垂直居中
单行文本若想在包裹它的标签内垂直居中,可使line-height
的值与height
的值相等
1 | //css |
利用绝对定位设置垂直/水平居中
给容器设置绝对定位(position:absolute),并且定位高度(top:50%)和margin-top为高度的一半(margin-top:-height/2)
1 | //css |
同理可用此方法设置水平居中
单行文本若想在包裹它的标签内垂直居中,可使line-height
的值与height
的值相等
1 | //css |
给容器设置绝对定位(position:absolute),并且定位高度(top:50%)和margin-top为高度的一半(margin-top:-height/2)
1 | //css |
同理可用此方法设置水平居中