将图像定位在<div>中时

时间:2017-07-15 07:39:15

标签: css

使用百分比超过单词来定位图像会有利吗?例如,在CSS文件中:

#example_1 {
  background: url();
  background-position: 50% 50%;
}

#example_2 {
  background: url();
  background-position: center;
}

虽然两者都有效地使图像居中。是否会出现更多&#34;正确&#34;?

的情况

1 个答案:

答案 0 :(得分:0)

center center50% 50%之间没有区别。 background-position: center center;是流行的解决方案。