I am using Bootstrap to create a carousel, I have large images so when the screen is smaller than the image, the ratio is not kept.
How could I change that?
Here is my code:
.carousel .item {
height: 500px;
}
.carousel img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 500px;
}
http://jsfiddle.net/DRQkQ/
I need the image to fit 100% width but keep its height of 500px (I think it's 500px) this should mean that on smaller screen we don't see the far left and far right of the image.
I tried containing the image in a div and add
overflow: hidden;
width: 100%;
height: 500px;
display: block;
margin: 0 auto;
But it doesn't work
Thank you!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…