Дипломник - Репутация: 13
- Webmoney BL:
? | я тоже понимаю что человеку iframe нужно вот два кода: 1 вариант (провернный)
Код HTML: <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css">
html {overflow: auto;}
html, body, div, iframe {margin: 0px; padding: 0px; height: 100%; border: none;}
iframe {display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden;}
</style> </head> <body> <iframe id="tree" name="tree" src="http://адрес.com" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%" scrolling="auto"></iframe> </body> </html> 2 вариант
Код HTML: <html> <head> <title></title> <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" /> <meta charset="UTF-8" /> </head> <body> <frameset rows="*,0" framespacing="0" border="0" frameborder="NO"> <frame src="http://адрес.com" scrolling="auto" noresize> </frameset> </body> </html> |