当使用这个类时,chrome左对齐我的div,当我检查元素并删除并添加隐藏的溢出时,它会快速回到中心.....不确定问题是什么
.contentbody {
width: 74%;
padding: 0%;
margin-right: auto;
margin-left: auto;
-webkit-border-radius: 40px;
overflow: hidden;
}
答案 0 :(得分:0)
尝试
.contentbody {
width: 74%;
padding: 0%;
margin: auto;
border-radius: 40px; /* this property can now be used without prefix */
}