将一个 DIV 嵌套进另一个 DIV 容器,并保持水平居中、垂直居中,可使用以下代码:
<html> <head><title>div居中嵌套</title><style type="text/css">.big{width: 800px;height: 500px;background: #333;position: relative;}.small{width: 400px;height: 200px;position: absolute;left: 50%;top: 50%;margin-left:-200px; margin-top: -100px;background: #fff;}</style> </head> <body> <div class="big"><div class="small">div居中嵌套</div> </div> </body> </html>