I am using bootstrap
carousal and having some problem with image height and width. Even though I define it in the img
attribute it still displays a
That you have width in placeholder should not matter, put this in your css and it should work, If it works you can try remove !important.
.carousel img {
width:100% !important;
min-width:100 !important;
height: auto;
}
.img-responsive in bootstrap will just set the width to 100%, So in the case that the image original proportions are less than carousel width it will not fill it out.