• CSS背景使用,引入、尺寸、平铺、定位、多重背景


    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
            <style type="text/css">
                *{
                    margin: auto;
                    padding: 0;
                }
                #a1{
                     100px;
                    height: 100px;
                    border: 1px solid red;
                    margin-top: 30px;
                    border-radius: 15px 20%;
                    box-shadow: 5px 10px;
                }
                #a2{
                     300px;
                    height: 300px;
                    border: 1px solid red;
                    background-image: url(../img/1.jpg);
                    background-size: 100% 100%;
                    background-repeat: no-repeat;
                    margin-top: 30px;
                }
                #a3{
                     300px;
                    height: 300px;
                    border: 1px solid red;
                    background-image: url(../img/1.jpg);
                    background-position: bottom;
                    background-repeat: no-repeat;
                    margin-top: 30px;
                }
                #a4{
                     400px;
                    height: 400px;
                    border: 1px solid red;
                    background-image: url(../img/1.jpg),url(../89ca0e54-6537-4aa4-8ac6-be6ec29b6636.jpg);
                    background-repeat: no-repeat;
                    margin-top: 30px;
                }
            </style>
        </head>
        <body>
            <div id="a1">
                
            </div>
            <div id="a2">
                
            </div>
            <div id="a3">
                
            </div>
            <div id="a4">
                
            </div>
        </body>
    </html>

  • 相关阅读:
    团队作业3--需求改进&系统设计
    团队作业2-《帮帮-需求规格说明书》
    团队作业1——团队展示&选题
    动态规划计算文本相似度项目—第一次个人编程作业(软件工程)
    Self Introduction&5 Questions
    团队作业6——复审与事后分析
    事后诸葛亮
    Alpha阶段项目复审
    团队作业1—团队展示&选题
    自我介绍+软工五问
  • 原文地址:https://www.cnblogs.com/hankai2735/p/8707467.html
Copyright © 2020-2023  润新知