background背景图


1.背景图片
background:url(../img/46.jpg);
纯色背景
background:red/#ff6600;
2.背景尺寸、大小:水平 垂直;
background-size:100% 100%;
background-size:1000px 500px;根据背景图或者背景区域大小去写像素值
background-size:contain;
background-size:cover;
3.背景平铺background-repeat
默认repeat包含repeat-x和repeat-y
no-repeat 不平铺
repeat-x 水平平铺
repeat-y 垂直平铺
round缩放背景图至容器大小(非等比缩放)
space背景图不会产生缩放,会被裁切
4.背景定位background-position
-方位background-position:left top
水平left左 center中 right右
垂直top上 center中 bottom下
-像素值background-position:18px -1px;
5.background-attachment: scroll;
background-attachment: scroll;默认根据屏幕滚动
background-attachment:fixed;将背景图固定在某个位置,滑动滚动条图片不动

posted @ 2022-04-12 16:28  爱迷路的天天  阅读(160)  评论(0)    收藏  举报