我有这个页面:http : //www.nyccriminallawyer.com/felonymisdemeanor/ 我想要做的是让左内箱(白色的重罪/轻罪为标题,称为.in_left)的高度为 100%父级(称为 .inner)
代码在这里:
.in_left {
float: left;
width: 721px;
margin-top: 10px;
font-family: 'Open Sans', sans-serif;
line-height: 24px;
background-color: white;
border-radius: 4px 4px 4px 4px;
box-shadow: 0px 0px 11px -4px #000;
}
.inner {
background: #CCD7CC;
margin-top: 1px;
color: #5A5A5A;
padding: 10px;
clear: both;
overflow: hidden;
}
我也尝试过 height: 100% 和 min-height ,但它不起作用。