【原】iframe 标签的使用

iframe 标签在一个html页面中嵌入另一个html页面, 而且两个页面相互间不影响, iframe中的html页面也可以有自己的头, 引用的css文件不会受外部html页面的css的影响。总结起来就是两个“不相关”的页面。

index.html——————————————————————————-

<html>
<head>
    <link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
    <a>this is the text outside the iframe</a><br/>
    <iframe src="iframe.html"></iframe>
</body>
</html>

index.css——————————————————————————–

a{
    color : red;
}
p{
    color : green;
}

iframe.html——————————————————————————

<html>
<head>
    <link rel="stylesheet" type="text/css" href="iframe.css" />
</head>
<body>
    <a>this is the text in iframe</a>
    <p>inside influnted by outside? No</p>
</body>
</html>

iframe.css———————————————————————————————–

a{
    color : green;
}
此条目发表在 HTML/Javascript/CSS 分类目录。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>