发布网友 发布时间:2022-04-24 04:30
共2个回答
热心网友 时间:2022-05-12 23:54
水平居中简单,垂直居中就难了.
你最好试试精确控制所有元素的高度.这样做起来兼容性好.
热心网友 时间:2022-05-13 01:12
看你是什么内容,,如果是文字,
<div style="width:500px;height:500px;background:#000;color:#fff;line-height:500px;">
这里的文字是会垂直居中的
</div>
如果是子元素,,可以给它做定位。
<div style="width:500px;height:500px;background:#000;color:#fff; position:relative;">
<div style="width:100px;height:100px;background:#f00;color:#fff; position:absolute;top:50%;left:50%;margin-top:-50px;margin-left:-50px;">中间这个div也是居中的</div>
</div>