Set Browser Zoom Level CSS Code Example


Example 1: zoom level in css


.zoom {
zoom: 150%;
}

Example 2: 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);

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy