How to make the picture decreases when the CSS screen is reduced

Make images responsive with CSS: learn how to adjust the size of your images when the screen size changes, with an example.

Responsive Images with CSS

Responsive images are a great way to make sure your website looks good on all devices, from desktop to mobile. It’s important to make sure that your images remain the correct size relative to the screen size, otherwise they may look pixelated or stretched. To make sure that your images resize correctly, the best way is to use CSS.

The basic idea behind responsive images is to use the CSS max-width property to set the maximum size of an image. This ensures that the image won’t be larger than its containing element, no matter what the screen size is. You can also set the min-width property to set the minimum size of an image.

Here is an example of how to use the max-width property to make an image responsive:


img {
  max-width: 100%;
}

This code will make sure that the image’s width is never greater than 100%, no matter what the screen size is. This will ensure that the image is always scaled correctly.

You can also use the min-width property to set the minimum size of an image. This is useful if you want to make sure that the image is never too small on smaller screens. For example:


img {
  min-width: 50%;
}

This code will make sure that the image’s width is never smaller than 50%, no matter what the screen size is. This will ensure that the image is always scaled correctly.

You can also use the width property to set a specific size for the image. This is useful if you want to make sure that the image is always the same size. For example:


img {
  width: 200px;
}

This code will make sure that the image is always 200 pixels wide, no matter what the screen size is. This will ensure that the image is always the same size.

Using the max-width, min-width, and width properties together is a great way to make sure that your images are always the correct size relative to the screen size. This will ensure that your website looks good, no matter what device it is viewed on.

Answers (0)