背景属性详细说明以及案例
背景属性详细说明
1. background-color
功能:设置元素的背景颜色。
值:颜色值(如
#FFFFFF
、rgb(255,255,255)
、red
等)。示例:
background-color: yellow;
2. background-image
功能:设置元素的背景图像。
值:
url("image-path")
或none
。示例:
background-image: url("bg-image.jpg");
3. background-repeat
功能:设置背景图像的重复方式。
值:
repeat
、repeat-x
、repeat-y
、no-repeat
。示例:
background-repeat: no-repeat;
4. background-position
功能:设置背景图像的起始位置。
值:
top
、bottom
、left
、right
、center
或特定坐标(如10px 20px
)。示例:
background-position: center top;
5. background-size
功能:设置背景图像的尺寸。
值:
auto
、cover
、contain
或具体尺寸(如100px 200px
)。示例:
background-size: cover;
6. background-attachment
功能:设置背景图像是否随滚动条滚动。
值:
scroll
、fixed
。示例:
background-attachment: fixed;
7. background
功能:简写属性,用于同时设置所有背景属性。
值:多个背景属性的组合。
示例:
background: #ffffff url("bg-image.jpg") no-repeat center top;
案例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Background Example</title> <style> .example { width: 300px; height: 200px; background-color: #f0f0f0; background-image: url("bg-image.jpg"); background-repeat: no-repeat; background-position: center top; background-size: cover; background-attachment: scroll; } </style> </head> <body> <div class="example"></div> </body> </html>
在这个案例中,.example
类的元素将具有浅灰色的背景颜色,背景图像居中顶部显示,不重复,覆盖整个元素,并且背景图像会随滚动条滚动。
本篇文章内容来源于:背景属性详细说明以及案例
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。