行业动态
网页背景图片居中,背景图片平铺,定义网页背景图片
发布日期:2009-09-05 阅读次数:5832 字体大小:

body {

 font-size: 12px;
 background-image: URL(bg.jpg);/*定义网页背景图片*/
 background-position:center center;/* css背景图片水平、垂直居中*/
 background-repeat: repeat-y;/* css背景图片垂直平铺,no-repeat为不平铺,repeat为水平垂直平铺*/
 margin-left: 0px;
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 0px;
}