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

框 架

时间:2018-08-07 23:58:57      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:head   html   布局   之间   需要   页面   resize   table   ram   

  1. 框架标签:<frameset>

注:框架标签不可以放到<body>,一般为了代码的可读性,会到<head>和<body>之间。

例:

<frameset rows="10%,*">

   <frame src="1.html" name="top" />

   <frameset cols="30%,*">

      <frame src="2.html" name="left" />

      <frame src="3.html" name="right" />

   </frameset>

</frameset>

这段代码会需要已经存在的3个html页面,分别是:1.html,2,html,3.html

注:当框架大小不想被鼠标拖动而改变,可以在frame标签中加入noresize属性,这个属性没有属性值,称为标记属性,加上就为固定。在XHTML的规范中,所有的属性都要有属性值,那么标记属性的属性值就是自身,如:noresize=”noresize”

  1. 2.  画中画标签:<iframe>

<iframe src=”1.html” >

很遗憾,画中画你没有看到,因为你的浏览器不支持iframe标签。

</iframe>

框架标签现在不是很常用,布局都用div+css+table。框架很少使用了。

框 架

标签:head   html   布局   之间   需要   页面   resize   table   ram   

原文地址:https://www.cnblogs.com/borter/p/9440000.html

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