CSS background-position-x 属性用于设置背景图像的初始水平位置,即用于将图像设置在水平方向的某个位置。位置是相对于定位层的,可以通过 CSSbackground-origin属性来设置。 语法: background-position-x:value; 属性值: left:用于将图像设置在左侧位置。 center:用于将图像设置在水平中心位置。 right:用于将图像设置...
background-position-x:30px;-ms-background-position-x:30px; background-position-y:30px;-ms-background-position-y:30px; firefox不支持这两个属性,如果要兼容,需要写成: background-position:30px 30px;
background-position-xCSS 属性设置水平方向的位置,与每个背景图片等位置层设置属性background-origin 代码语言: /* Keyword values */background-position-x:left;background-position-x:center;background-position-x:right;/* <percentage> values */background-position-x:25%;/* <length> values */background...
background-position-xCSS 属性设置水平方向的位置,与每个背景图片等位置层设置属性 background-origin相关。更多信息请查看background-position属性,这个用的比较普遍。
The background-position-x CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by background-origin.
CSS-背景位置-x | background-position-x ackground-position-xCSS 属性设置水平方向的位置,与每个背景图片等位置层设置属性background-origin相关。更多信息请查看background-position属性,这个用的比较普遍。 /* Keyword values */background-position-x:left;background-position-x:center;background-position-x:...
backgroundPositionX of type DOMString, read/write Sets or retrieves the x-coordinate of the backgroundPosition property. The string value can be
Example of the background-position-x property with the "left" value: <!DOCTYPE html> Title of the document body { background: #ccc url("/build/images/w3docs-logo-black.png") repeat-y; background-position-x: left; } Background-position-x property example Try it Yourself ...
background-position-x: left | center | right | <percentage> | <size>ValuesleftAligns the background to the left. Equivalent to writing 0 or 0%. centerAligns the background horizontally to the center. Equivalent to 50% entry. rightAligns the background to the right. Record equivalent to ...
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...