闲暇时间学习学习HTML相关知识————HTML 框架!
HTML 框架
框架标签(frame) Deprecated
框架对于页面的设计用非常大的作用框架集标签(frameset) Deprecated
框架集标签定义如何将窗口分割为框架
每一个frameset定义一系列行或列
rows/cols的值规定了每行或每列占据屏幕的面积常用标签
noresize:固定框架大小
cols:列
rows:行内联框架
iframe
iframe 示例
framea.html1
2
3
4
5
6
7
8
9
10
11
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body bgcolor="red">
<p>段落1</p>
<p>段落2</p>
</body>
</html>
index.html1
2
3
4
5
6
7
8
9
10
11<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<a href="http://www.jiang-yu.cn" target="_top">Click</a>
<iframe src="framea.html" frameboder="0" width="400px" height="400px">
</iframe>
</html>
最后更新: 2018年09月26日 11:32