absolute 定位居中代码

有时候 margin: 0 auto

无法居中

使用如下代码

其中宽度margin-left是宽度width除以二,就是先把左边界放到中间,然后移动到中间位置

left: 50%;
margin-left: -190px;

此处评论已关闭