bottom Description:
The bottom property defines how far the bottom of the element is offset from the bottom of the container element.
bottom in CSS Versions:
bottom Syntax:
bottom: <length> | <percentage> | auto | inherit
- <length>
A precise unit of meaurement. - <percentage>
A percentage of the height of the containing block. - auto
Determined by widths and heights of the elements. - inherit
The element should have the same value as the parent element.
bottom Initial Value:
auto
bottom Applies To:
Positioned elements.
bottom Inheritance:
This property is not inherited.
bottom Browser Support:
bottom Media Type:
- Visual
bottom Examples:
Standard bottom property
<p style="bottom : 5px;">
This paragraph should display 5 pixels from the bottom of the container element.
</p>
bottom Special Notes:
- Negative units are permitted.

