Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> #wrap { width: 750px; height: 1500px; padding: 0; overflow: hidden; } #scaled-frame { width: 1000px; height: 2000px; border: 0px; } #scaled-frame { 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; } @media screen and (-webkit-min-device-pixel-ratio:0) { #scaled-frame { zoom: 1; } } </style> </head> <body> <div id="wrap"> <iframe id="scaled-frame" src="/tool/"></iframe> </div> </body> </html>