这是我的代码:
<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>