VOOZH about

URL: https://www.geeksforgeeks.org/css/css-styling-images/

⇱ CSS Images - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CSS Images

Last Updated : 7 Apr, 2026

CSS styling for images enhances their appearance and ensures they adapt well across different devices. It allows customization of size, shape, and visual effects for better presentation.

  • Use properties like width, height, and object-fit to control image size and responsiveness.
  • Apply styles such as border, border-radius, and box-shadow for visual effects.
  • Helps images look attractive and maintain proper layout on all screen sizes.

Thumbnail Images

The border property helps create thumbnail images by adding a border around the image, giving it a clean, defined look.

  • The border property defines the size and color of the image's border.
  • Width and height properties set the dimensions of the thumbnail image.

Border-radius Property

The border-radius property rounds the corners of the image, creating a circular or oval shape, based on the values provided.

  • border-radius: 50% creates a circular image when applied to a square image.
  • Width and height define the size of the image.

Responsive Images

Responsive images automatically adjust to fit the container size, ensuring they look good on different screen sizes.

  • width: 100% makes the image adjust to the container's width.
  • height: auto ensures the image maintains its aspect ratio.

Transparent Image

The opacity property is used to make an image transparent. The value ranges from 0 (fully transparent) to 1 (fully opaque).

  • opacity: 0.5 makes the image semi-transparent.
  • The image will appear with reduced opacity, allowing the background to be seen through it

Center an Image

To center an image within a container, you can use margin and display properties.

  • display: block makes the image behave like a block element.
  • margin-left: auto and margin-right: auto center the image horizontally.
Comment