我在这里看到了多个关于带有固定排水沟的流体网格的问题和答案。我还看到了很多关于等高流体宽度 div 列的信息。我试图同时做这两件事,但没有找到具体的解决方案。
我能够让它工作,但我的解决方案似乎有点“hacky”和不稳定。下面是我的 jsFiddle 链接标记。这是使用固定排水沟完成等高流体宽度 div 的安全方法,还是您推荐更好的解决方案?最近我一直在尝试改进我的语义并编写健壮的代码......
**浏览器支持只需要 IE9+
HTML
<div class="grid">
<div class="grid_01">
<h2>Change Password</h2>
<p>Individual locations may only update their own password. The master location may update all passwords.</p>
<p>If you have any questions, please contact the us at 555-555-5555.</p>
</div>
<div class="gutter"></div>
<div class="grid_01">
<h2>New Password</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit.</p>
</div>
</div>
CSS
.grid {display:table; padding:20px;}
.grid_01 {
display:table-cell;
width:50%;
padding:20px;
border-top:4px solid #a085c6;
background:#ffffff;
-moz-box-shadow:0px 1px 1px 0px #717171;
-webkit-box-shadow:0px 1px 1px 0px #717171;
box-shadow:0px 1px 1px 0px #717171;
}
.gutter {width:20px;}
*, *:after, *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
我最担心的是空的排水沟div。我感谢任何建设性的反馈。