这是我的CSS块:
.actual-form table {
padding: 5px 0 15px 15px;
margin: 0 0 30px 0;
display: block;
width: 100%;
background: #f9f9f9;
border-top: 1px solid #d0d0d0;
border-bottom: 1px solid #d0d0d0;
}
我只希望IE 7、8和9能够“看到” width: 100%
最简单的方法是什么?
width: auto
像Firefox或Chrome这样的其他浏览器那样解释块元素。在Chrome / Firefox中,width:auto
将块元素的宽度扩展到其容器的整个宽度。IE不会这样做,而是需要width: 100%