码迷,mamicode.com
首页 > 其他好文 > 详细

框架标签

时间:2016-02-26 01:46:43      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

实现网页的分块:

 

左边的代码:

1 <html>
2     <head>
3         <title>left</title>
4     </head>
5     <body bgcolor="red">
6         <a href="http://www.baidu.com" target="Right">百度</a>
7     </body>
8 </html>

右边代码:

1 <html>
2     <head>
3         <title>right</title>
4     </head>
5     <body bgcolor="yellow" > 
6     
7     </body>
8 </html>

上面代码:

1 <html>
2     <head>
3         <title>top</title>
4     </head>
5     <body bgcolor="black">
6         i am top
7     </body>
8 </html>

承载页面:

<html>
    <head>
        <title>top</title>
    </head>
    <frameset rows="10%,*">
        <frame src="top.html" noresize="noresize"/>
        <frameset cols="30%,*">
            <frame src="Left.html" noresize="noresize"/>
            <frame src="Right.html" name="Right"/>
        </frameset>

    </frameset>
</html>

 

技术分享

框架标签

标签:

原文地址:http://www.cnblogs.com/liuchao3329/p/5218869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!