Home → References → CSS Properties →
CSS Property: right
For absolutely positioned boxes, specifies how far from the right of the containing box (which is the first containing relatively positioned box or the page itself) the box should be.
For relatively positioned boxes, specifies how far from the right a box should be shifted.
HTML Dog is hosted by Titan Internet
Possible Values
- [percentage]
- [length]
inheritauto(default)
Example
#tolet {
position: relative;
right: 2em;
}

