Home > Article > Web Front-end > What does css right mean?
right means "right, right" in Chinese, and the right attribute in CSS specifies the right edge of the element. This attribute defines the offset between the right margin boundary of the positioned element and the right boundary of its containing block. , its syntax is like "img{position:absolute;right:5px;}".
The right attribute in css specifies the right edge of the element. This property defines the offset between the right margin edge of the positioned element and the right edge of its containing block.
Note:
If the value of the "position" attribute is "static", then setting the "right" attribute will have no effect.
For static elements, it is auto; for length values, it is the corresponding absolute length; for percentage values, it is the specified value; otherwise, it is auto.
For relatively defined elements, the calculated value of left is always equal to right.
Example:
Set the right edge of the image 5 pixels to the left of the right edge of its containing element:
img { position:absolute;right:5px;}
The above is the detailed content of What does css right mean?. For more information, please follow other related articles on the PHP Chinese website!