right Description:
The right property defines how far the right of the element is offset from the right of the container element.
right in CSS Versions:
right Syntax:
right: <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 right value as the parent element.
right Initial Value:
auto
right Applies To:
Positioned elements.
right Inheritance:
This property is not inherited.
right Browser Support:
right Media Type:
- Visual
right Examples:
Standard right property
<p style="right : 5px;">
This paragraph should display 5 pixels from the right of the container element.
</p>
right Special Notes:
- Negative units are permitted.

