我试图弄清楚如何正确地将我的背景图像适合我的网站。它一直显示相同的图像十几次,我已经尝试搜索一些拉伸代码,但它们似乎都没有。
/* Reset ================================================================================= */
* { margin:0; padding:0; }
body { background:url(../images/bg-body.png) 0 0 repeat; font:12px/1.55 Arial, Helvetica, sans-serif; color:#7b7b7b; text-align:center; }
img { border:0; vertical-align:top; }
a { color:#950000; text-decoration:none; }
a:hover { text-decoration:underline; }
:focus { outline:0; }
答案 0 :(得分:1)
试试这个:
body { background:url(../images/bg-body.png) 0 0 no-repeat;
background-size:cover;
}