create responsive iframe in cross domain - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Responsive Layout

Description

create responsive iframe in cross domain

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
iframe {<!--  w w w.ja v  a2  s  .  com-->
   position:absolute;
   top:0;
   left:0;
   width:100%;
   height:100%;
}
</style> 
 </head> 
 <body> 
  <iframe src="http://www.rapidowebs.com"></iframe>  
 </body>
</html>

Related Tutorials