<frame>
优质
小牛编辑
135浏览
2023-12-01
描述 (Description)
HTML 标记用于指定frameset标记中的每个帧。 This tag is not supported in HTML5 。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML frame 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 标记还支持以下附加属性 -
属性 | 值 | 描述 |
---|---|---|
frameborder | 0或1 | 指定是否在框架周围显示边框。 |
marginheight | pixels | 允许您指定框架边框左右之间的空间宽度以及框架的内容。 该值以像素为单位。 例如marginwidth =“10”。 |
marginwidth | pixels | 指定帧的内容与其左右边距之间的边距(以像素为单位)。 |
name | 框架名称 | 框架的名称。 |
noresize | noresize | 设置为noresize时,用户无法调整框架大小。 |
scrolling | yesnoauto | 确定滚动条操作。 |
src | URL | 帧内容文件的位置。 |
浏览器支持
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |