div浏览器居中

方法一:
margin auto

方法二:
先让左上角居中

left:50%
right:50%

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

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

整体代码

.a {
	background-color: grey;
	 400px;
	height: 120px;
	opacity: 0.5;
	left: 50%;
	top: 50%;
	margin-left: -100px;
	margin-top: -60px;
	position: fixed;
}
原文地址:https://www.cnblogs.com/22Kon/p/11132239.html