From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../zh-cn/web/css/background-position-x/index.html | 100 +++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 files/zh-cn/web/css/background-position-x/index.html (limited to 'files/zh-cn/web/css/background-position-x') diff --git a/files/zh-cn/web/css/background-position-x/index.html b/files/zh-cn/web/css/background-position-x/index.html new file mode 100644 index 0000000000..37a9017574 --- /dev/null +++ b/files/zh-cn/web/css/background-position-x/index.html @@ -0,0 +1,100 @@ +--- +title: background-position-x +slug: Web/CSS/background-position-x +tags: + - CSS + - CSS Background + - CSS Property +translation_of: Web/CSS/background-position-x +--- +
{{CSSRef}}
+ +

概要

+ +

background-position-x CSS 属性设置水平方向的位置,与每个背景图片等位置层设置属性 {{cssxref("background-origin")}}相关。更多信息请查看{{cssxref("background-position")}}属性,这个用的比较普遍。

+ +
注意:这个属性的值会被后面声明的属性覆盖掉,如{{cssxref("background")}}和{{cssxref("background-position")}}等简写的属性。
+ +

{{cssinfo}}

+ +

语法

+ +
/* Keyword values */
+background-position-x: left;
+background-position-x: center;
+background-position-x: right;
+
+/* <percentage> values */
+background-position-x: 25%;
+
+/* <length> values */
+background-position-x: 0px;
+background-position-x: 1cm;
+background-position-x: 8em;
+
+/* side-relative values */
+background-position-x: right 3px;
+background-position-x: left 25%;
+
+/* Multiple values */
+background-position-x: 0px, center;
+
+/* Global values */
+background-position-x: inherit;
+background-position-x: initial;
+background-position-x: unset;
+
+ +

+ +
+
left
+
在位置层上相对于左边的位置。
+
center
+
在位置层上相对于中间点的位置。
+
right
+
在位置层上相对于右边的位置。
+
<length>
+
{{cssxref("<length>")}}值是定义相对于位置层边缘的距离,边缘默认为左边。
+
<percentage>
+
{{cssxref("<percentage>")}}值是定义相对于位置层边缘的距离百分比,边缘默认为左边。
+
+ +

正规语法

+ +
{{csssyntax}}
+ +

说明

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('CSS4 Backgrounds', '#background-position-longhands', 'background-position-x')}}{{Spec2('CSS4 Backgrounds')}}Initial specification of longhand sub properties of {{cssxref("background-position")}}  to match longstanding implementations.
+ +

兼容性

+ + + +

{{Compat("css/properties/background-position-x", "background-position-x")}}

+ +

更多

+ + -- cgit v1.2.3-54-g00ecf