div中嵌套一个居中的div有很多方法,如果不想调整边距,有一个简单的方法:
<div align="center" style="width: 200px;height: 200px;background: green;display: table-cell;vertical-align: middle;">
<div style=" width: 100px;height: 100px;background: blue;">
</div>
</div>
效果如下:
2023-02-13 12:45:11
div中嵌套一个居中的div有很多方法,如果不想调整边距,有一个简单的方法:
<div align="center" style="width: 200px;height: 200px;background: green;display: table-cell;vertical-align: middle;">
<div style=" width: 100px;height: 100px;background: blue;">
</div>
</div>
效果如下: