position: fixed;
動的な幅と高さで画面の中央にポップアップ ボックスを作成したいと思います。これに使いmargin: 5% auto;
ました。それがなければposition: fixed;
、水平方向にはきれいに中央揃えになりますが、垂直方向には中央揃えになりません。を追加position: fixed;
した後、水平方向に中央揃えされていません。
完全なセットは次のとおりです。
.jqbox_innerhtml {
position: fixed;
width: 500px;
height: 200px;
margin: 5% auto;
padding: 10px;
border: 5px solid #ccc;
background-color: #fff;
}
<div class="jqbox_innerhtml">
This should be inside a horizontally
and vertically centered box.
</div>
このボックスを CSS で画面の中央に配置するにはどうすればよいですか?