当background-size: 100%;
使用时,我得到了我想要的行为,但我不明白为什么当我尝试background-size: contain;
我的 Chrome 浏览器时,图像显示在角落里,只有浏览器窗口宽度的 20% 左右。Firefox 也是如此。
body {
background: url(http://www.moonwards.com/img/tycho.png);
background-size: contain;
background-color: #000;
background-repeat: no-repeat;
}
为什么会这样?CanIuse说这些浏览器不应该有这个问题。