您的位置:首页 > Web前端 > CSS

CSS常用属性之背景

2016-01-19 13:34 573 查看
背景
background-color		背景颜色	值和color属性值设定方式相同,或使用transparent(透明)值
background-image		背景图象	图片URL或none(无)
background-repeat		背景重复	repeat、repeat-x、repeat-y、no-repeat
background-attachment	        背景附件	scroll(滚动)或fixed(固定)
background-position		背景位置
横向的关键字(left, center, right),纵向的关键字(top, center, bottom)
百分比和长度也可用做安排背景图象的位置

body{
margin:0;
padding:0;
background-image:url(bg.jpg);
background-repeat:no-repeat;
background-position:bottom right;
background-color:#eeeee8;
}

固定背景图片
background-attachment:fixed;

背景样式综合设置
background:blue url(bg.jpg) no-repeat fixed 5px 10px;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息