The following text is positioned using Cascading Style Sheet Positioning properties...

This text is positioned absolutely using CSSP. The upper left corner of the invisible "box" that surrounds this paragraph is positioned exactly 100 pixels from the left edge of the browser window and 100 pixels down from the top edge. Cool, huh?

Actually, the CSS rule is applied to a <DIV> tag, which in turn surrounds the <P> tags. This is necessary because IE has problems positioning elements directly. But if you wrap an element in a <DIV> and then position the <DIV>, the element will be positioned fine. That's an excellent general rule to follow when positioning anything.