ブラウザーのサイズが変更された場合でも、常に画面の中央に保持したい DIV があります。また、中央の DIV と重なってはならないフローティング右 DIV もあります。
Chrome では、中央が左側で画面からはみ出したり、右側のフローティング DIV が中央の DIV に重なったりして、多くの問題が発生しています。
CSS
.center {
border-style: solid;
border-width: 1px;
background-color: #808080;
width: 650px;
height: 200px;
margin: auto;
}
.right {
border-style: solid;
border-width: 1px;
background-color: #808080;
width: 200px;
height: 200px;
float: right;
}
body {
border-style: dashed;
border-width: 1px;
}
HTML
<div class="right">right</div>
<div class="center">center</div>