我将如何扩展背景的长度,而又不会显得太拉伸?在尝试播放图像的长度和宽度之前,我会先松开一些实际的图像/图片。
body{
background-image: url(ctvkjN.jpg);
background-color: #cccccc;
}
尝试一下
html {
background: url(ctvkjN.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}