<frameset>
优质
小牛编辑
117浏览
2023-12-01
描述 (Description)
HTML
标记用于将窗口划分为帧。 This tag is not supported in HTML5 。例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML frameset Tag</title>
</head>
<frameset cols = "200, *">
<frame src = "/html/menu.htm" name = "menu_page" />
<frame src = "/html/main.htm" name = "main_page" />
<noframes>
<body>
Your browser does not support frames.
</body>
</noframes>
</frameset>
</html>
具体属性 (Specific Attributes)
HTML
标记还支持以下附加属性 -属性 | 值 | 描述 |
---|---|---|
cols | 列大小 | 以像素,百分比或相对长度指定列数及其宽度。 默认值为100% |
rows | row size | 以像素,百分比或相对长度指定行数及其高度。 默认值为100%。 |
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |