私のブロックをページの中央にしたいのですが、position: absolute
を設定した後、margin-left
とmargin-right
、auto
は機能しません。位置絶対がブロックを中心にしていません
.block1 {
position:absolute;
bottom:0;
height: 336px;
width: 1020px;
margin-left: auto;
margin-right: auto;
}
position:absoluteを指定して同時にブロックを中央に配置できますか?
は、水平または垂直または両方の中心? –