iframe

title: When embedding iframe how scale the content to zoom out and fit to give a glimpse of the whole page?
collapse: true
 
Add an ID to the iframe element and then this CSS code:
 
	```css
	#frame { width: 800px; height: 520px; border: 1px solid black; }
	    #frame {
	        -ms-zoom: 0.75;
	        -moz-transform: scale(0.75);
	        -moz-transform-origin: 0 0;
	        -o-transform: scale(0.75);
	        -o-transform-origin: 0 0;
	        -webkit-transform: scale(0.75);
	        -webkit-transform-origin: 0 0;
	    }
	```
Reference URL: https://stackoverflow.com/questions/166160/how-can-i-scale-the-content-of-an-iframe