Home > Article > Web Front-end > How to Prevent Images from Shrinking Disproportionately on Browser Resize?
CSS: Shrinking Images on Browser Resize
When configuring images via the admin panel, users may encounter a problem where images shrink disproportionately when the browser window is resized. This issue can be addressed by understanding the interplay between CSS properties and image aspect ratios.
The provided CSS rules initially include both max-width and height properties, which can lead to the undesired shrinkage when the browser is resized. To prevent this, one must specify only one dimension (typically max-width) and set the other to auto.
Example:
.users-list > li img { border-radius: 50%; max-width: 100%; height: auto; }
This approach retains the aspect ratio of the image while allowing it to scale appropriately to fit the available space. As seen in the "correct" example below, the image maintains its proportions and does not stretch or shrink excessively.
Incorrect:
max-width: 100%; width: 100px; height: 100px;
Correct:
max-width: 200px; height: auto;
The above is the detailed content of How to Prevent Images from Shrinking Disproportionately on Browser Resize?. For more information, please follow other related articles on the PHP Chinese website!