Blogger Information
Blog 30
fans 0
comment 0
visits 22556
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML框架
的确
Original
645 people have browsed it


<iframe>标签定义了HTML框架,通过说那个框架,可以在浏览器窗口中显示不止一个页面

实例:

<iframe src=”URL”></iframe>

设置高度与宽度

Htight和width属性用来定义iframe标签的高度与宽度

属性默认以像素为单位,但是你可以指定其按比例显示,(如:80%)

实例:

<iframe src="http://118qq.top/" width="800" height="800"></iframe>
<p>一些旧的浏览器不知持iframe</p>
<p>如果浏览器不支持iframe则不会显示</p>

移除边框

Frameborder属性用于定义iframe表示是否显示边框,设置属性值为0则移除iframe的边框

实例:

<iframe src="http://118qq.top/" width="800" height="800" frameborder="0"></iframe>
<p>一些旧的浏览器不知持iframe</p>
<p>如果浏览器不支持iframe则不会显示</p>

使用iframe来显示目录链接页面

Iframe可以显示一个目标链接的页面

目标链接的属性必须使用iframe的属性

实例:

<iframe width="800" height="800" frameborder="0" name="118"></iframe>
<a href="  target="118">118qq.top</a>
<p><b>注意:</b>因为a标签的target的属性是名为118的iframe的框架所以在点击链接页面会显示在框架中</p>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post