CSS背景相关知识扩充

10 篇文章 0 订阅

一、背景相关知识扩充

<!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>
    <style>
      .box1 {
        width: 300px;
        height: 300px;
        /* 需求一: 添加背景色 */
        /* background-color */
        background-color: red;
        /* 需求二: 添加背景图 */
        /* 
            background-image: url() 
            url指向图片引入的路径 
            如果引入的图片小于盒子, 图片默认铺满
            如果引入的图片大于盒子, 图片默认显示左上角的位置
        */
        background-image: url(../homework1118/images/2.jpg);
        /* 需求三: 虽然图小, 但是只要一张 */
        /* 
            background-repeat
            设置背景图是否铺满
                可选值
                    repeat 铺满
                    no-repeat 不铺满, 留一张
                    repeat-x 水平方向铺满
                    repeat-y 垂直方向平铺
        */
        background-repeat: no-repeat;
        /* 需求四: 调整背景图在元素中的位置 */
        /* 
            background-position
            调整背景图位置
                参数: 
                    参数1 水平方向位置
                    参数2 垂直方向位置
                left right top bottom center 通过这几个方位词调整图片位置
                    参数2如果不写 默认center
                写法2: 直接写大小
        */
        background-position: center center;
      }
    </style>
  </head>
  <body>
    <div class="box1"></div>
  </body>
</html>
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title></title>
    <style type="text/css">
      * {
        margin: 0;
        padding: 0;
      }

      .box1 {
        height: 500px;
        width: 500px;
        padding: 20px;
        border: 10px red double;
        margin: 0 auto;
        /*设置一个背景颜色*/
        background-color: #bfa;
        background-clip: content-box;
        /* 引入背景图 */
        background-image: url(../homework1130/images/3.gif);
        /* 设置图片不重复 */
        background-repeat: no-repeat;
        /* 设置图片的位置 */
        background-position: 100px 50px;
        /* 设置图片偏移的原点 */
        background-origin: border-box;
      }
      .box2 {
        width: 100%;
        height: 100%;
        background-color: rgba(255, 235, 205, 0.6);
      }
    </style>
  </head>
  <body>
    <div class="box1">
      <!-- <div class="box2"></div> -->
    </div>
  </body>
</html>
<!-- 
5:background-clip 设置背景色的范围
      可选值:
          border-box 默认值,背景颜色会出现在边框的下边
          padding-box  背景不会出现在边框,只会出现在内容区和内边距
          content-box  背景只出现在内容区

6:background-origin 
    设置背景图片的偏移量计算的原点,配合偏移量使用的
      padding-box  从内部距处开始计算   默认值
      content-box  背景图片的偏移量从内容区处计算
      border-box   从边框开始计算偏移量
 -->
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title></title>
    <style type="text/css">
      * {
        margin: 0;
        padding: 0;
      }
      .box1 {
        height: 500px;
        width: 500px;
        border: 1px solid red;
        margin: 50px auto;
        /* 引入背景图 */
        /* background-image: url(./img/小图.webp); */
        background-image: url(../homework1130/images/3.gif);
        /* 背景图不重复 */
        background-repeat: no-repeat;
        /* 设置背景图的大小 */
        /* background-size: 300px auto; */
        background-size: cover;
      }
    </style>
  </head>
  <body>
    <div class="box1"></div>
  </body>
</html>
<!-- 
7:background-size 设置背景图片的大小
  参数:
    第一个值:宽度
    第二个值:高度
        如果只写一个,第二值,默认为auto
        
    cover  图片的比例不变,将元素铺满 (比较常用)
    contain 图片比例不变,将图片完整显示
 -->
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title></title>
    <style type="text/css">
      .box1 {
        height: 300px;
        width: 300px;
        /*设置一个背景颜色*/
        /* background-color: red; */
        /*设置一个背景图片*/
        /* background-image: url(./img/小图.webp); */
        /*设置背景不重复*/
        /* background-repeat: no-repeat; */
        /*设置背景图片的位置*/
        /* background-position: center; */
        /* 设置图片大小 */
        /* background-size: 150px; */
        /* 设置图片偏移的原点 */
        /* background-origin: border-box; */
        /*  设置背景色的范围 */
        /* background-clip: padding-box; */

        /*
				  background
				  	- 通过该属性可以同时设置所有背景相关的样式,
                  样式值之间用空格隔开即可
				  	- 没有顺序的要求,谁在前谁在后都行
				  		也没有数量的要求,不写的样式就使用默认值
				    -background-size要写在background-position后面
				 */
        background: #bfa url("./img/小图.webp") center/200px no-repeat;
      }
    </style>
  </head>
  <body>
    <div class="box1"></div>
  </body>
</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值