* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
540 B
540 B
title
title |
---|
Make an Image Responsive |
Make an Image Responsive
Solutions
Solution 1 (Click to Show/Hide)
Following the instructions:
Add style rules for the img tag to make it responsive to the size of its container. It should display as a block-level element, it should fit the full width of its container without stretching, and it should keep its original aspect ratio.
the style becomes:
<style>
img {
max-width: 100%;
display: block;
height: auto;
}
</style>