CSS Right Property

CSS 1

CSS 2

CSS 3

No Yes Yes

Description

Specifies the distance from the element's right outer margin to the right edge of the content block

Syntax

right: [value];

Possible values

  • [length]
  • [percentage]
  • auto
  • inherit

Initial Value

Auto

Applies To

Positioned elements

Inherited

No

Media

Visual

Example

h1 {
  display: block;
  position: absolute;
  top: 50px; right: 100px; bottom: 50px; left: 100px;
}


View All CSS Properties