Unslider - 响应高度

时间:2015-02-19 06:22:23

标签: jquery html css slider

我正在尝试使用Unslider,但很难让高度自动响应。似乎高度不能改变,只有宽度可以。

here's a jsfiddle

.banner {
position: relative;
width: 100%;
overflow: auto;

font-size: 18px;
line-height: 24px;
text-align: center;
background: #fff;
margin-left: 10px;
margin-right: 10px;
height: auto;
}


.banner ul {
    list-style: none;
    width: 300%;
    background-repeat: no-repeat;
}

.banner ul li {
    display: block;
    float: left;
    width: 33%;
    height: auto;
background-repeat: no-repeat;
    background-size: 100%;

}

希望这有足够的洞察力,但如果您需要更多代码,请告诉我。

1 个答案:

答案 0 :(得分:0)

Fiddle Demo

试试这个

.banner {
    position: relative;
    width: 96%;
    overflow: auto;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    background: #fff;
    margin-left: 2%;
    margin-right: 2%;
    height: auto;

}