我在我的Opencart商店安装了一个新模块,但是有一点css bug:
如果我点击过滤器,它会向下滑动一个带过滤器的div,但滑下的div(红色框)高度不是100%(有一个滚动条)。我真的很感激任何帮助。
答案 0 :(得分:3)
如果您不想设置固定高度,请尝试添加此css:
.box-filter {
display: inline-block;
}
在我的浏览器上运行
答案 1 :(得分:1)
删除.filter_grouper
.filter_grouper {
height:30px;
}
答案 2 :(得分:0)
从.product-filter
属性overflow:auto
中移除并添加height:140px
或somthing
答案 3 :(得分:0)
在你的css中,删除.filter_grouper上的高度,以便根据内容进行拉伸。并删除overflow:auto on .product-filter。这应该会有效!