Image Styling Showcase

Preview 5 different image styles below and copy their CSS code.

Image Style 1: Rounded Corners

Rounded Corners
.img-style-1 {
  border-radius: 15px;
  width: 300px;
  height: auto;
}
      

Image Style 2: Circular Image

Circular Image
.img-style-2 {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}
      

Image Style 3: Border and Shadow

Border and Shadow
.img-style-3 {
  border: 5px solid #007bff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 300px;
  height: auto;
}
      

Image Style 4: Hover Zoom Effect

Hover Zoom Effect
.img-style-4 {
  width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.img-style-4:hover {
  transform: scale(1.1);
}
      

Image Style 5: Grayscale Hover Effect

Grayscale Hover Effect
.img-style-5 {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.img-style-5:hover {
  filter: grayscale(0%);
}