Copyright © tutorialspoint.com

CSS - top

previous next


Description:

The top property defines an offset of the top edge of an absolutely positioned element from the top edge of its positioning context, or the vertical distance which a relatively positioned element will be displaced.

Possible Values:

Applies to:

All the HTML positioned element.

DOM Syntax:

object.style.top="2px";

Example:

Here is the example which shows effect of this property:

<p style="position:absolute; top:100px;">
This line will be positioned 100px below from the 
top edge of this window.
</p>

To Become more comfortable - Do Online Practice


previous next

Copyright © tutorialspoint.com