<img> tag
bookmark_borderbookmark
Stay organized with collections
Save and categorize content based on your preferences.
Setting the width
and height
attributes on <img>
tags helps prevent
layout shifts. This information
allows the browser to reserve the correct amount of space for the image.
Set the width
and height
attributes: The values of these attributes should
be set to match the dimensions of the image itself (that is, its intrinsic
size) -
rather than dimensions that the image will be displayed at.
Adjust image styling as needed: Depending on the image's existing styling,
adding width
and height
attributes may cause the image to render
differently. In many cases, this can be fixed by adding height: auto
or
width: auto
to the existing styling.
Previous CSS styling |
Change to |
img { width: 100%; } |
img { width: 100%; height: auto; } |
img { max-width: 100%; } |
img { max-width: 100% height: auto; } |
img { height: 100%; } |
img { height: 100%; width: auto } |
<img width="267" height="400" src="dog.jpg">
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-11-06 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-06 UTC."],[],[]]