HTML – 奇怪的位置绝对铬bug

我绝对将元素放在浮动div中.最后一个绝对定位的元素以铬合金的形式粘在div的顶部,直到我们调整窗口大小(见
here)

到目前为止我尝试的事情:

>将容器放入浮动元素内
>溢出:对浮动,元素和容器隐藏/自动

这只发生在chrome中.知道为什么/发生了什么?

最佳答案 只有小事你必须做,其他一切都很棒.用这个

.schedule-course-slot-wrapper {
position: absolute; /*Important*/
border: thin solid;
border-radius: 3px;
margin: 0 2px;
padding: 0 3px;
height: 100%;
}

代替

.schedule-course-slot-wrapper {
position: relative; /*Important*/
border: thin solid;
border-radius: 3px;
margin: 0 2px;
padding: 0 3px;
height: 100%;
}
点赞