Horje
how to use image zoom effect in css Code Example
how to use image zoom effect in css
.parent:hover .child,
.parent:focus .child {
  transform: scale(1.2);
}
zoom in to picture on html css
/* Point-zoom Container */.point-img-zoom img {  transform-origin: 65% 75%;  transition: transform 1s, filter .5s ease-out;}/* The Transformation */.point-img-zoom:hover img {  transform: scale(5);}
how to use image zoom effect in css
.parent {
  width: 400px; 
  height: 300px;
}

.child {
  width: 100%;
  height: 100%;
  background-color: black; /* fallback color */
  background-image: url("images/city.jpg");
  background-position: center;
  background-size: cover;
}




Css

Related
Tailwind CDN Code Example Tailwind CDN Code Example
css font-variant Code Example css font-variant Code Example
css text highlight Code Example css text highlight Code Example
how to disable link in hmtl Code Example how to disable link in hmtl Code Example
media query for mobile min and max width Code Example media query for mobile min and max width Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11