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

framset 的一些小应用

时间:2014-05-27 03:25:59      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:前端第一课时

制作出这样的效果bubuko.com,布布扣

bubuko.com,布布扣

首先建立了一个all.html

<frameset rows="20%,*"frameborder="1" framespacing=5 bordercolor=red>

<frame src="top.html" noresize/>  //top.html  暂时用一张图片替代

<frameset cols="20%,*"framespacing=5>

<fram src="left.html" noresize/>   //norsize指的是无法调整框架的大小

<fram src="right1.html" name=”right”/>    //设置name=right ,是为了在下面的left.Html的target="right" 相对应,当点击bbb时,right2.html 会出现在name=right处,以覆盖当前页面。

</frameset>

</framset>

注意如果frameborder="0",则bordercolor对边框的颜色设置看不到效果。


left.html

<body bgcolor=pink>

<a href=”right1.html” target=”right”>aaa</a><br/>

<a href=”right2.html” target=”right”>bbb</a><br/>

</body>


除此之外还要注意frame中属性scrolling 滚动条的设置,有三个值yes no auto

framset 的一些小应用,布布扣,bubuko.com

framset 的一些小应用

标签:前端第一课时

原文地址:http://wcoke.blog.51cto.com/8926116/1412716

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