使用百分比超过单词来定位图像会有利吗?例如,在CSS文件中:
#example_1 {
background: url();
background-position: 50% 50%;
}
#example_2 {
background: url();
background-position: center;
}
虽然两者都有效地使图像居中。是否会出现更多"正确"?
的情况答案 0 :(得分:0)
center center
和50% 50%
之间没有区别。
background-position: center center;
是流行的解决方案。