本文介绍了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>
为什么 width:100%
不管用?我该如何解决?
Why is that the width:100%
is not working? How can I solve it?
推荐答案
尝试提供宽度: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>
这篇关于DIV表单元格宽度100%的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!