HTML CSS examples for CSS Layout:Responsive Layout
create responsive iframe in cross domain
<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>