|
|
home
/ reference
/ html
<spacer></spacer>

type
size
width
height
align
The spacer tag is used to insert a block of white space within an html document.
<spacer type="">
| |
Description
| |
The type attribute is used to specify whether the spacer will be
horizontal, vertical, or block.
|
Code
| |
<spacer type="vertical"></spacer>
|
|
<spacer size="">
| |
Description
| |
The size attribute is used to define 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.
|
Code
| |
<spacer size="25"></spacer>
|
|
<spacer width="">
| |
Description
| |
The width attribute is used when the spacer type= block. Between the quotes
specify a pixel value for the width of the block.
|
Code
| |
<spacer width="20"></spacer>
|
|
<spacer height="">
| |
Description
| |
The height attribute is used when the spacer type= block. Between the quotes
specify a pixel value for the height of the block.
|
Code
| |
<spacer height="20"></spacer>
|
|
<spacer align="">
| |
Description
| |
The align tag is used to specify the alignment of the block of white space.
Valid alignments are left, right, and center.
|
Code
| |
<spacer align="center"></spacer>
|
|
|