Answers for "zoom image css on click zoom in"

CSS
0

How to zoom picture on hover using css

.img:hover{
transform:scale(1.0);
}
Posted by: Guest on January-25-2022
0

equivalent zoom css

-moz-transform: scale(0.5);
-webkit-transform: scale(0.5);
-o-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
Posted by: Guest on June-14-2020
0

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;
}
Posted by: Guest on February-26-2021

Browse Popular Code Answers by Language