Stretched Image In Carousel Bootstrap
I am using Bootstrap 4. There I have a carousel with picture. The images keep showing stretched. Idk what's the problem. It looks like this: The original pic looks like this: Ca
Solution 1:
Instead of using object-fit: contain !important;
, have you tried using object-fit: cover !important;
to achieve your desired effect?
I am assuming you are wanting to place the background in a position where it will cover from left to right as well as top to bottom without morphing the image? For this I use background-size: cover;
or object-fit: cover;
.
Post a Comment for "Stretched Image In Carousel Bootstrap"