Reputation: 21
Link: Image Cropped Preview
In my HTML page is not showing full image and I want to show it full without cropping How can I resolve it?
Upvotes: 0
Views: 44
Reputation: 11
you can add this css:
background-size: 100% 100%;
Reputation: 36179
what about background-size: contain; ?
background-size: contain;
Upvotes: 1