css 处理背景图片拉伸

时间: 2011-03-07 / 分类: Magento 专栏, 系统运维 / 浏览次数: 601 views / 0个评论 发表评论
body{background:url(图片) repeat} 

背景{}中添加background: url(图片地址)repeat
详细讲解:
repeat 背景图像在纵向和横向上平铺
no-repeat 背景图像不平铺
repeat-x 背景图像在横向上平铺
repeat-y 背景图像在纵向平铺 

代码如下:
默认代码为:body{background-color:#FFFFFF}
换成以下代码
body{background:url(背景图片地址) background-position: center;background-attachment: fixed;repeat-x #FFFFFF}
这是全屏的背景代码~

发表评论

您的昵称 *

您的邮箱 *

您的网站