当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > IFrames 简介

WEB设计综合
合理使用HTML标签进行CSS布局
IE中伪类:hover的使用及BUG
CSS floats创建三列式网页布局
display:inline-block的深入理解
由浅入深漫谈margin属性
PDF、ZIP、DOC链接的标注
纯CSS代码实现翻页
CSS在表格边框上的美学应用
CSS的超级技巧大放送
创造收藏夹中的个性化图
让网页里的提交按钮变得更靓
让弹出窗口变得“体贴”
在html文件中引入其它html文件
用好超级链接标记—A
HTML语言的语法基础及规则
像表格table一样轻松布局div层
XHTML+CSS布局之XHTML应用小结
Html 书签的使用
有关HTML代码的另类应用技巧
避免表格(table)被撑开变形的CSS代码

WEB设计综合 中的 IFrames 简介


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 1965 ::
收藏到网摘: n/a

iframe-overflow
                                 iframe 案例

IFrames are different from regular frames, because unlike regular frames, IFrames can be positioned anywhere on the page, and can be any size. Example: Now copy this code, and paste it somewhere on your page.

与传统的框架是不同,IFrame 可以任意尺寸在页面的任何一处定位。举个例子来说:你可以复制下面的代码,然后将它粘贴到网页的任意地方:

<div style="position: absolute; top:300; left:400"> <IFRAME src="PAGEURL.htm" name="frame" width="200" height="200" frameborder="0"></iframe></div>


Edit all of the numbers. The width and height determine how big your IFrame will be. The top and left numbers determine where the IFrame will be placed on your site. The larger the number for the top position is, the further down it will go. The larger the left number is, the further right it will go. Keep altering these numbers until you are happy with them. You also must change PAGEURL.htm to the url of your IFrame. To make a link target your IFrame (have the link come up in the IFrame) copy the code below, but change PAGEURL.htm to your preferred URL.

编辑上面代码中的属性值,widthheight定义了IFrame的大小。Top left定义了IFrame位于页面中的具体方位。Top值越大,它就位于页面中最越靠下面的地方;Left值越大,它就位于页面中最越靠右面的地方。你可以根据你的要求随意地更改这些数字,直到你满意为止。同时,你必须将PAGEURL.htm添加到IFrameURL中。将下面的代码复制到IFrame(这个IFrame已经包含具体的链接)中来创建一个目标链接,将这里的PAGEURL.htm改为你所设定的具体页面链接。

<a href="PAGEURL.htm" target="frame">

评论 (0) All

登陆 | 还没注册?