Embed interactive SVG charts within iframes and display them on other webpages.
A Pen by Riccardo Scalco on CodePen.
Embed interactive SVG charts within iframes and display them on other webpages.
A Pen by Riccardo Scalco on CodePen.
| <div id="outerdiv"> | |
| <iframe src="http://viias.it/dataviz/" id="inneriframe" scrolling="no" width="500" allowfullscreen="" frameborder="0"></iframe> | |
| </div> |
| /* Set pixels with Page Ruler */ | |
| #outerdiv | |
| { | |
| height:950px; | |
| overflow:hidden; | |
| position:relative; | |
| } | |
| #inneriframe | |
| { | |
| position:absolute; | |
| top:-1351px; | |
| height:99999px; | |
| } |