POSITION CSS position allows you to position elements, e.g. text, graphics, etc., where ever you wish on your page. For example, the bottom frame of both My Help Pages Introduction and My Page Builder Help Page Introduction are done with CSS Positioning.

There are four types of position:

Only the relative and absolute positions are discussed here.

Position format is:

position:type;property1:value1;property2:value2;property3:value3;....

and has eight properties that can be used:

The first three properties will be discussed in this section and the overflow will be discussed in its own page.


Example - 1 POSITIONING TEXT - Microsoft Internet Explorer (IE) and Netscape 6.1+ (NS)

<div style="position:absolute;left:150;top:150">This Text Is Positioned.</div>

You can use a graphic in place of the text:

<div style="position:absolute;left:150;top:150"><img src="graphic-file-name"></div>

This example above will position the text 150 pixels from the left side of the screen and 150 pixels down from the top. Click here to see example 1.


Example - 1 POSITIONING SECTIONS OF CODE -

Two pages that introduce my Help and Page Builder pages have columns of text, tables, and graphics that are done with CSS Positioning. You can read more about at Web Page Design.