html – DIV表格单元格宽度100%

前端之家收集整理的这篇文章主要介绍了html – DIV表格单元格宽度100%前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的代码
<div style='display: table'>
    <div style='height:200px; width:100%; text-align: center; display: table-cell; vertical-align: middle'>No result found</div>
</div>

为什么宽度:100%不起作用?我该如何解决

解决方法

尝试给父母宽度:100%,以便孩子有全宽.
<div style='display: table; width:100%; background:#f00;'>
    <div style='height:200px; width:100%; text-align: center; display: table-cell; vertical-align: middle'>No result found</div>
</div>
原文链接:https://www.f2er.com/html/225468.html

猜你在找的HTML相关文章