css中 背景图片全面平铺 的代码是啥
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css中 背景图片全面平铺 的代码是啥相关的知识,希望对你有一定的参考价值。
是www.blogcn.com的博客
图片地址http://pic.yupoo.com/mortalmethuselah/814615ed04aa/jf1wtrtq.jpg
直接套进去吧
要整个博客都是这个背景
或者有没有本事帮我把图搞大来?
如果 lxm 19872006 的方法不行,就加一句 repeat-xy,即:
<style type="text/css">
body
background: url("http://pic.yupoo.com/mortalmethuselah/814615ed04aa/jf1wtrtq.jpg") repeat-xy;
</style>
就一定行了。 参考技术A
源代码:
<style type="text/css">body
background-color:#FFFFFF;
background-image:url(背景图片地址);
background-repeat:no-repeat;
background-position:center 0;
</style>
改后代码:
<style type="text/css">body
background:url(背景图片地址) repeat center 0 #fff;
</style>
或者试试CSS3中的效果:
<style type="text/css">body
background:url(背景图片地址) repeat center 0 #fff;
background-size:cover;
</style> 参考技术B <style type="text/css">
body
background:url(http://pic.yupoo.com/mortalmethuselah/814615ed04aa/jf1wtrtq.jpg);
</style>
看看这样行不 参考技术C background-repeat:repeat;
以上是关于css中 背景图片全面平铺 的代码是啥的主要内容,如果未能解决你的问题,请参考以下文章