怎样让一个div中div水平居中
发布网友
发布时间:2022-04-26 20:26
我来回答
共1个回答
热心网友
时间:2022-05-13 11:02
<div style="width:200px; height:150px; background:red; padding-top:50px;">
<div style="width:100px; height:100px; background:white; margin:0px auto"></div>
</div>有一点要注意,内部标签加margin:0px
auto即可水平居中,但是标签必须设置宽度才有效,如果内部标签需要自动伸展宽度又要水平居中,那么div不太好办到,不妨使用table来实现,举例如下:
<div style="width:200px; height:150px; background:red; padding-top:50px;">
<table border="0" cellpadding="0" cellspacing="0" style="margin:0px auto">
<tr>
<td style="height:100px; background:white;">11111</td>
</tr>
</table>
</div>