我在这个网站上工作,我有3个问题。
以下是指向该网站的链接:http://palete.co.rs/squareb
答案 0 :(得分:0)
问题2)
.carousel-inner > .item > img {
height: 800px;
width: auto;
max-width: auto;
}
Bootstrap设置max-width:100%
这就是问题所在。 (Tipp:使用浏览器的开发人员工具检查元素,看看已经为他们设置了哪些CSS。例如the developer tools of firefox)
答案 1 :(得分:0)
我找到了问题1和2的解决方案。
1)
HTML
<a class="slide-prev hidden-xs" href="#myCarousel" data-slide="prev"><img src="img/white-slide-prev.png" alt="slide previous"/></a>
<a class="slide-next hidden-xs" href="#myCarousel" data-slide="next"><img src="img/white-slide-next.png" alt="slide next"/></span></a>
CSS
.slide-prev {
position:absolute;
top:400px;
left:0;
z-index:100;
}
.slide-next {
position:absolute;
top:400px;
right:0;
z-index:100;
}
2)
CSS
.carousel-inner > .item img {
min-height:100%;
min-width:1024px;
height:auto;
width:100%;
}
.carousel-inner > .item {
height:800px !important;
overflow:hidden;
}
当我弄清楚时,我会将解决方案发布到第3个问题。