spacer

Form

<spacer>

Attributes

attribute default description
align none none
height none specifies the height of space in pixels when the type is block
width none specifies the width of space in pixels when the type is block
size none specifies the size, in pixels, of a horizontal or vertical space in between texts
type none specifies where to place the space in between texts (horizontal, vertical, block)

Support

[Netscape 3, 4]

Explanation

The spacer tag specifies the size of blank space. The browsers of Netscape 3, 4 support it.

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<p>
<spacer type="horizontal" size="64">The 64 pixels of blank space is created on the left side.
</p>
</body>
</html>