CSS3系列 07 背景处理

背景样式

纯色背景 background-color

使用background-color可定义纯色背景。

代码示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./css_reset.css">
    <style>
        div:nth-of-type(1){
            background-color: red;
            color: #fff;
            font-style: italic;
            font-size: 3rem;
            padding: 2rem;
            width: 300px;
            text-align: center;
        }
    </style>
</head>
<body>
    <div>hello world</div>
</body>
</html>

渲染结果:

image-20210714150043374

图片背景 background-image

使用background-image: url(“path”)可定义图片背景。

图片背景本身不会改变盒模型的大小,这与在盒子中插入img标签是不同的。

代码示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./css_reset.css">
    <style>
        div:nth-of-type(1){
            background-image: url("./width_background_image.jpeg");
            color: #fff;
            font-style: italic;
            font-size: 3rem;
            padding: 2rem;
            width: 300px;
            text-align: center;
        }
    </style>
</head>
<body>
    <div>hello world</div>
</body>
</html>

渲染结果:

image-20210714150014704

背景剪裁 background-clip

我们可以将背景设置为盒子的某一区域,比如content区域或者padding区域或者border区域。

请使用background-clip来进行指定。

它可设置的值如下表所示:

描述
border-box 包括边框
padding-box 不含边框,仅包含内边距与内容区域
content-box 不含边框、内边距,仅包含内容区域

代码示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./css_reset.css">
    <style>
        div:nth-of-type(1){
            background-color: red;
            background-clip: content-box;
            color: #fff;
            font-style: italic;
            font-size: 3rem;
            padding: 2rem;
            width: 300px;
            text-align: center;
            border: 1px solid #ddd;
        }
    </style>
</head>
<body>
    <div>hello world</div>
</body>
</html>

渲染结果:

image-20210714151401466

背景重复 background-repeat

如果背景图小于盒子,那么默认会重复使用背景图铺满整个盒子。

我们可以使用background-repeat为它指定如何重复。

它可设置的值如下表所示:

描述
repeat 水平、垂直重复(默认)
repeat-x 水平重复
repeat-y 垂直重复
no-repeat 不重复
space 背景图片对称均匀分布

代码示例,取消重复,并让背景

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值