English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The frameborder attribute specifies whether to display the border around the frame, for practical reasons, it is best not to set this attribute.
Two-page web pages without borders:
<frameset cols="50%,50%"> <frame src="frame_a.htm" frameborder="0"> <frame src="frame_b.htm" frameborder="0"> </frameset>Test to see ‹/›
IEFirefoxOperaChromeSafari
All major browsers support the frameborder attribute.
HTML5 The <frame> tag is not supported.
The frameborder attribute specifies whether to display the border around the frame.
Tip:For practical reasons, it is best not to set this attribute; use CSS to apply Border style and color.
<frame frameborder="1|0">
Value | Description |
---|---|
1 | With border (default). |
0 | No border. |