1

このクラスを使用する場合、クロムはdivを左揃えにします。要素を検査し、オーバーフローを削除して非表示に追加すると、中央にスナップバックします。問題が何であるかわかりません。

.contentbody {
    width: 74%;
    padding: 0%;
    margin-right: auto;
    margin-left: auto;  
    -webkit-border-radius: 40px;
    overflow: hidden;
}
4

1 に答える 1

0

試す

.contentbody {
    width: 74%;
    padding: 0%;
    margin: auto; 
    border-radius: 40px; /* this property can now be used without prefix */
}
于 2013-03-20T18:49:38.817 に答える