position absolute 居中
可以借助width left margin-left实现居中
left:50%会让元素左侧居中
width 设置元素宽度
margin-left设置外边距为宽度一半
即可实现居中
示例如下
[pcsh lang=”css” tab_size=”4” message=”” hl_lines=”” provider=”manual”]
div {
position: absolute;
left: 50%;
width: 300px;
margin-left: -150px;
height: 100px;
background: red;
}
[/pcsh]
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Dev!