|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>网页框架技术(上中(左右)下)</title>
</head>
<frameset rows="10%,*,10%" frameborder="yes">
<frame rows="10%" noresize="noresize" src="./top.html" frameborder="1" name="top"/>
<frameset cols="20%,*" frameborder="yes" name="middle">
<frame noresize="noresize" src="./mid_left.html" />
<frame noresize="noresize" src="./mid_right.html"/>
</frameset>
<frame name="foot" src="./foot.html"/>
</frameset>
<body>
</body>
</html>
基本的注意事项 - 有用的提示:
假如一个框架有可见边框,用户可以拖动边框来改变它的大小。为了避免这种情况发生,可以在 <frame> 标签中加入:noresize="noresize"。
来源:http://www.w3school.com.cn/html/html_frames.asp |
|