网页背景不想让图片重复又不想留下空白

请教高手

<style type="text/css">
body
{
background: url('smiley.gif') no-repeat fixed center;
}
</style>
把url里面的东西设置成你自己的图片就可以了
或者,,把图片设置成分辨率就好了。。。追问

不重复就会留下空白的 我不想留下空白 案例 火影中文网

追答

那就设置成拉伸啊。。
不平铺:background-repeat: no-repeat;
横向平铺:background-repeat: repeat-x;
纵向平铺:background-repeat: repeat-y;
固定:background-attachment: fixed;
滚动:background-attachment: scroll;
水平居中:background-position: center;
水平居中并垂直居中:background-position: center center;

温馨提示:答案为网友推荐,仅供参考