HTML - <spacer> Tag



The HTML <spacer> tag specifies a whitespace.

This tag was not supported by the modern browsers. Instead you can use the <pre> , <br> tags or CSS properties.

Example

Consider the following example, where we are going to use the param tag.

<!DOCTYPE html>
<html>

   <head>
      <title>HTML spacer Tag</title>
   </head>

   <body>
      Create some space <spacer type = "block" width = "50" /> here.
   </body>

</html>

When we run the above code, it will generate an output consisting of the text on the webpage. The <spacer> tag is available in Netscape 4 and higher version only.

Global Attributes

This tag supports all the global attributes described in − HTML Attribute Reference

Specific Attributes

The HTML <object> tag also supports the following additional attributes −

Attribute Value Description
type vertical
horizontal
block
The type attribute is used to specify whether the spacer will be horizontal, vertical, or block.
size number Specifies the number of pixels tall or wide the spacer will be This attribute is only used if the spacer type is "horizontal" or "vertical." If the spacer type is "block," then the width attribute is used.
width number The width attribute is used when the spacer type = "block". Between the quotes specify a pixel value for the width of the block.
height number The height attribute is used when the spacer type = "block". Between the quotes specify a pixel value for the height of the block.
align left
right
center
The align tag is used to specify the alignment of the block of white space. Valid alignments are left, right, and center.

Event Attributes

This tag supports all the event attributes described in − HTML Events Reference

Advertisements