css样式笔记

设置背景图片横竖平铺满,不随滚动而背景跟随滚动

<style type="text/css">
body 
{
background-image:url(/i/eg_bg_02.gif);
background-repeat:repeat-y repeat-x;
background-attachment:fixed
}
</style>
原文地址:https://www.cnblogs.com/yuxiaoyiyou/p/14228282.html