Answers for "change zoom in my site html css"

CSS
3

how to zoom iin by default in html page

html {
	zoom: 110%;
}
/*This can be used for any tag, id or class*/
Posted by: Guest on November-01-2021
5

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

Browse Popular Code Answers by Language