• 三、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;
    }
  • 相关阅读:
    MySQL 多会话之间更新数据的小实例
    MySQL Profile
    MySQL Explain
    MySQL 索引
    利用网站上传漏洞使用一句话木马控制服务器
    kali之nmap
    kali之使用sqlmap进行sql注入
    kali之DVWA
    Kali安装nessus
    openvas
  • 原文地址:https://www.cnblogs.com/gyqqqqq/p/10526932.html
Copyright © 2020-2023  润新知