我想要divs(.ra),其内容是:
由于可以拥有许多这些.box div,我们需要一个滚动。滚动使标题固定。
似乎没问题,但我在卷轴的底部有一个很大的空白区域。我不明白为什么。
完整代码:https://jsfiddle.net/yannn/n4dk2znh/1/
HTML:
<div class="ra">
<div class="header">
<div class="ra_name">Martin, John William Harry Slobodan Junior</div>
</div>
<div class="rcs" id="ra1_rcs">
<div class="box">titre</div>
<div class="box">titre</div>
...
<div class="box">titre</div>
<div class="box">titre</div>
<div class="box">titre</div>
</div>
</div>
CSS:
.ra {
width: 28%;
height: 200px;
float: left;
border-style: solid;
margin-left: 1%;
overflow: auto;
}
.header {
background-color: white;
color: black;
height: 50px;
width: 26%;
position: absolute;
}
.rcs {
margin-top: 50px;
margin-bottom: : -50px;
height: 150px;
}
.box {
width: 60px;
height: 40px;
float: left;
background-color: black;
border-radius: 3px;
font-size:80%;
color: white;
margin: 1px;
padding: 1px;
text-align: left;
text-overflow: ellipsis;
}