将元素在父 使用 left: 50%; 居中 HTML 元素时,它会对齐该元素与整个浏览器窗口。然而,要将元素专门置于其父级 要实现此目的,请分配 text-align:center;到父级 接下来,添加 margin:auto;到子元素。这确保了子元素在父 这是使用 CSS 的演示: 注意 margin:auto ;将子元素在父元素 #parent {
text-align:center;
background-color:blue;
height:400px;
width:600px;
}
.block {
height:100px;
width:200px;
text-align:left;
}
.center {
margin:auto;
background-color:green;
}
以上是如何使用 CSS 将元素在其父 Div 中居中?的详细内容。更多信息请关注PHP中文网其他相关文章!