CSS 正确
原创right
right CSS 属性定义了定位元素的右外边距边界与其包含块右边界之间的偏移,非定位元素设置此属性无效。
css
/* <length> values */
right: 3px;
right: 2.4em;
/* <percentage>s of the width of the containing block */
right: 10%;
/* Keyword value */
right: auto;
/* Global values */
right: inherit;
right: initial;
right: unset;
right的效果取决于元素的position属性:
- 当
position设置为absolute或fixed时,right属性指定了定位元素右外边距边界与其包含块右边界之间的偏移。 - 当
position设置为relative时,right属性指定了元素的右边界离开其正常位置的偏移。 - 当
position设置为sticky时,如果元素在 viewport 里面,right属性的效果和 position 为relative等同;如果元素在 viewport 外面,right属性的效果和 position 为fixed等同。 - 当
position设置为static时,right属性无效。
当 left 和 right 同时指定时,元素的位置会被重复指定。当容器是从左到右时,left 的值会被优先设定;当容器是从右到左时,right 的值会被优先设定。
| 初始值 | auto |
|---|---|
| 适用元素 | positioned elements |
| 是否是继承属性 | 否 |
| Percentages | refer to the width of the containing block |
| 计算值 | if specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, auto |
| 动画类型 | a length, percentage or calc(); |
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权本站发表,未经许可,不得转载。
开发学习网





