Don*_*n P 2 css margin css3 centering
我试图居中<div>在<section>.将margin-left和margin-right设置auto为不起作用(我通常的方法).我忘记了什么?
js问题的解答:http://jsfiddle.net/veWKh/
设置宽度,否则div是显示块,宽度为100%:小提琴:http://jsfiddle.net/veWKh/1/
CSS:
section {
background-color: rgba(0,0,0,0.2);
}
div {
margin-left: auto;
margin-right: auto;
width: 100px;
}
Run Code Online (Sandbox Code Playgroud)