标签:
13.1 什么是框架?
13.2 建立框架集
13.2.1 创建一个框架集文档
<frameset rows = "50,*"> <frame src = "http://www.baidu.com" name = "top" /> <frame src = "http://www.baidu.com" name = "main" /> <noframes> <body> <h1>Sample Framed Site</h1> your browser does not support frames.Sorry! </body> </noframes> </frameset>
13.2.2 添加单独的框架
13.3 在框架和窗口之间链接
13.4 使用内联框架
<body> <h1 style = "text-align:center">Inline Frame Example</h1> <div style = "text-align:center"> <iframe src = "http://www.baidu.com" style = "width:500px; height:100px; border: 1px solid black; background-color: #FFFFFF"></iframe> </div> </body>
13.5 总结
标签:
原文地址:http://www.cnblogs.com/revoid/p/5585551.html