背景属性详细说明

1. background-color

  • 功能:设置元素的背景颜色。

  • 值:颜色值(如#FFFFFFrgb(255,255,255)red等)。

  • 示例:background-color: yellow;

2. background-image

  • 功能:设置元素的背景图像。

  • 值:url("image-path")none

  • 示例:background-image: url("bg-image.jpg");

3. background-repeat

  • 功能:设置背景图像的重复方式。

  • 值:repeatrepeat-xrepeat-yno-repeat

  • 示例:background-repeat: no-repeat;

4. background-position

  • 功能:设置背景图像的起始位置。

  • 值:topbottomleftrightcenter或特定坐标(如10px 20px)。

  • 示例:background-position: center top;

5. background-size

  • 功能:设置背景图像的尺寸。

  • 值:autocovercontain或具体尺寸(如100px 200px)。

  • 示例:background-size: cover;

6. background-attachment

  • 功能:设置背景图像是否随滚动条滚动。

  • 值:scrollfixed

  • 示例: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类的元素将具有浅灰色的背景颜色,背景图像居中顶部显示,不重复,覆盖整个元素,并且背景图像会随滚动条滚动。

本篇文章内容来源于:背景属性详细说明以及案例