zoukankan      html  css  js  c++  java
  • 三、CSS样式——背景

    CSS背景

    概念:CSS允许应用纯色作为背景,也允许使用背景图像创建相当复杂的效果。

    属性 描述
    background-attachment  背景图像是否固定或者随着页面的其余部分滚动
     background-color  设置元素的背景颜色
     background-image 把图片设置为背景 
     background-position 设置图片的起始位置 
     background-repeat

    设置背景图片是否及如何重复 

    background-size 规定背景图片的尺寸
     background-origin 规定背景图片的定位区域 
     background-clip 规定背景的绘制区域 
    <!--background.html-->
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <link href="style.css" type="text/css" rel="stylesheet">
    </head>
    <body>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
        <p>test the background-color</p>
    </body>
    </html>
    /*style.css*/
    body{
        /*background-color: khaki;*/
        background-image: url("1.jpg");
        background-repeat: no-repeat;   /*图片不允许重复*/
        /*background-position: right top;*/
        /*background-position: 100px 100px;*/
        /*background-attachment: fixed;*/
        background-size: 100px 100px;
        /*right和center*/
    }
    
    
    p{
        width: 150px;
        padding: 10px;
        background-color: blueviolet;
    }
  • 相关阅读:
    JAVA---File递归遍历文件目录,输出绝对路径
    JAVA--Map集合
    (笔记)JAVA--集合实现斗地主洗牌、发牌、看牌(利用TreeSet排序)
    SVN简单使用
    System.Object
    动态创建控件
    select 查询
    数据类型
    入门(值得注意的地方)
    错误调式 异常处理
  • 原文地址:https://www.cnblogs.com/gyqqqqq/p/10526932.html
Copyright © 2011-2022 走看看