This content has been marked as final.
Show 2 replies
-
1. Re: Learning the Iframe.....
Nancy O. Aug 15, 2013 5:26 PM (in response to GESYMSB)An inline frame pulls another HTML page into the parent page. Sort of a page within a page.
Copy & paste this code into a new, blank document. Adjust CSS height and width values as needed.
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Iframe Test</title> <style> body {background-color:#09C;} div { width: 70%; margin: 0 auto; padding:2%; background-color: #CFF; } iframe { border:none; overflow:auto; /**scrollbars when needed**/ height: 200px; /**adjust as required**/ width:100%; /**adjust as requires**/ } </style> </head> <body> <div> <h2>This is an iframe</h2> <iframe src="http://example.com"></iframe> </div> </body> </html>Nancy O.
-
2. Re: Learning the Iframe.....
GESYMSB Aug 16, 2013 5:22 AM (in response to Nancy O.)Nancy if I could I will buy you all the BigMacs and Whoppers that I can find!
(\/) Thanksssssssssssssssssssssss


