问题在于引导CSS:
img { max-width: 100%; width: auto 9; height: auto; vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic;}设置
max-width: 100%;图像不会超过视口。您需要在CSS上覆盖该行为:
.carousel img { position: absolute; top: 0; left: 0; min-width: 100%; height: 500px; max-width: none;}请注意
max-width: none;底部添加的内容。这是默认的最大宽度值,并且未设置限制。



