nolayer

Form

<nolayer> ... </nolayer>

Attributes

attribute default description
none none none

Support

[Netscape 4]

Explanation

The nolayer tag specifies the content displayed by browsers that don't support the <layer> tag. The content is enclosed by the <nolayer> tag. The <layer> tag works only in Netscape 4.

Related Tags

ilayer, layer

Sample Code [Output]

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
The layer tags are unique to Netscape 4<br>
<layer top="10" left="50">Sample</layer>
<nolayer>Sample</nolayer>
</body>
</html>