图象背景位置在CSS

0

的问题

我目前正在通过一个网站的横幅广告,通过铬开发工具(检查). 我注意到,一个特定的横幅广告,有以下规则在其CSS:

 banner{ 
     background-position:bottom;
     background-position-x: center;
     background-position-y: center;
  }

这只是一个形式而已?. 因为,当我去掉三背景的性质和组 background-position: center横幅不会受到任何影响。

从开发人员的崇拜者。 感谢

background-image css html javascript
2021-11-24 02:09:29
1

最好的答案

1

这面旗帜只是有不好的CSS。
background-position 是一个速记, background-position-xbackground-position-y.

所以,

banner { 
  background-position: bottom;
  background-position-x: center; /* This is not doing anything, because x became 'center' when it was omitted above. */
  background-position-y: center; /* This will override the previously set 'bottom' */
}

正如你所提到的, background-position: center 做同样的工作,因为这两个x和y将'中心'。

没有错,使用的关键词,但是如果你刚开始与CSS,我强烈推荐你获得用以使用的百分比。
(你会感谢我后来当你需要更多的具体定位使用 calc().

background: 0% 100% = background: left bottom
background: 100% 0% = background: right top
background: 50% 50% = background: center center

资料来源: https://developer.mozilla.org/en-US/docs/Web/CSS/background-position

2021-11-24 02:48:59

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................