div浏览器居中

方法一:
margin auto

方法二:
先让左上角居中

left:50%
right:50%

然后div整体向左上移动半个宽度和高度

margin-left:width/2;
margin-top:height/2;

整体代码

.a {
    background-color: grey;
    width: 400px;
    height: 120px;
    opacity: 0.5;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -60px;
    position: fixed;
}

猜你喜欢

转载自www.cnblogs.com/22Kon/p/11132239.html