当前位置: 首页 > 文档资料 > CSS 入门教程 >

right

优质
小牛编辑
130浏览
2023-12-01

描述 (Description)

left属性用于定位元素。 右侧属性允许您指定元素从其包含块的左侧偏移的距离(用于绝对定位),或者从元素本身通常所在的位置右侧(用于相对定位)。

可能的值 (Possible Values)

  • length - 距离定位上下文右侧的固定距离。

  • percent - 定义上下文宽度的某个百分比,假设已明确设置上下文的宽度。

  • auto - 默认。 让浏览器计算左侧位置。

适用于 (Applies to)

所有HTML定位元素。

DOM语法 (DOM Syntax)

object.style.right = "2px";

例子 (Example)

以下是显示此属性效果的示例 -

<html>
   <head>
   </head>
   <body>
      <p style = "position:absolute; right:100px;">
         This line will be positioned 100px away from the right edge of this window.
      </p>
   </body>
</html>