网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网站建设 >> HTML教程 >> 正文
最新文章
· 安装与设置FCKEditor
· iframe父窗口和子窗口相互的调用方法
· 解决div总是被select遮挡的问题
· html的框架frame和frameset
· 网页常用的三种注释方法
· iframe背景透明效果的实现
· 使用iframe嵌入的页面单击链接时,让
· 点击#空链接不跳到页面顶端
· 网页表格表框制作技巧
· HTML特殊字符列表
热门文章
 使用iframe嵌入的页面单击链接时,
 iframe背景透明效果的实现
 html的框架frame和frameset
 点击#空链接不跳到页面顶端
 flash自动激活和flash虚线框的解决
 网页中插入背景音乐
 IFRAME属性及详解
 简单实现在网页中控制Flash的播放
 在线视频播放代码大全
 让iframe透明显示
相关文章
没有相关文章
html的框架frame和frameset
来源:JavaEye 更新时间:2010/9/11 9:24:35 阅读次数:
字体:[ ] 我要投稿

水平的框架:
<html>
<frameset rows="25%,50%,25%">
  <frame src="/example/html/frame_a.html">
  <frame src="/example/html/frame_b.html">
  <frame src="/example/html/frame_c.html">
</frameset>
</html>

垂直的框架:
<html>
<frameset cols="25%,50%,25%">
  <frame src="/example/html/frame_a.html">
  <frame src="/example/html/frame_b.html">
  <frame src="/example/html/frame_c.html">
</frameset>
</html>

假如一个框架有可见边框,用户可以拖动边框来改变它的大小。
为了避免这种情况发生,可以在 <frame> 标签中加入:noresize="noresize"。
重要提示:不能将 <body></body> 标签与 <frameset></frameset> 标签同时使用!
不过,假如你添加包含一段文本的 <noframes> 标签,就必须将这段文字嵌套于 <body></body> 标签内。
(在下面的第一个实例中,可以查看它是如何实现的。)
<html>
<frameset cols="25%,50%,25%">
  <frame src="/example/html/frame_a.html">
  <frame src="/example/html/frame_b.html">
  <frame src="/example/html/frame_c.html">
<noframes>
<body>Your browser does not handle frames!</body>
</noframes>
</frameset>
</html>

混合框架的使用:
<html>
<frameset rows="50%,50%">
<frame src="/example/html/frame_a.html">
<frameset cols="25%,75%">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>
</frameset>
</html>

含有noresize的使用:
<html>
<frameset rows="50%,50%">
<frame noresize="noresize" src="/example/html/frame_a.html">
<frameset cols="25%,75%">
<frame noresize="noresize" src="/example/html/frame_b.html">
<frame  src="/example/html/frame_c.html">
</frameset>
</frameset>
</html>

单元格间距: cellspacing
单元格边距:cellpadding
表格属性:
<caption> 定义表格标题
<th>定义表格的表头
<thead>定义表格的页眉
<tbody>定义表格的主题
<tfoot>定义表格的页脚
<colgroup>定义表格列的组

  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号