<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            *{
                margin: auto;
                padding: 0;
            }
            #a1{
                width: 100px;
                height: 100px;
                border: 1px solid red;
                margin-top: 30px;
                border-radius: 15px 20%;
                box-shadow: 5px 10px;
            }
            #a2{
                width: 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{
                width: 300px;
                height: 300px;
                border: 1px solid red;
                background-image: url(../img/1.jpg);
                background-position: bottom;
                background-repeat: no-repeat;
                margin-top: 30px;
            }
            #a4{
                width: 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>

最新文章

  1. Laravel Composer and ServiceProvider
  2. SHELL编写NGINX自动部署脚本
  3. 聊下git pull --rebase
  4. PHP常用数据库代码汇总
  5. 我所了解的chrome
  6. JS URL传递中文参数时出现乱码的处理
  7. linux上进程状态查询
  8. HTML5_Canvas_属性、定义及方法
  9. X5学习笔记—给单元格添加颜色
  10. vim编码相关配置
  11. git push后修改错误的commit message
  12. XSS解决方案系列之四:关于编码
  13. floyd+动态规划 hdu-4571-Travel in time
  14. Asp.net 主题 【1】
  15. STM32关于优先级设定的理解 NVIC_SetPriority()
  16. Embedded Linux Primer----嵌入式Linux基础教程--章节介绍
  17. 14.2.4 InnoDB Undo Logs
  18. Oracle SQL Lesson (3) - 使用单行函数自定义输出
  19. System.BadImageFormatException: 试图加载格式不正确的程序。 (异常来自 HRESULT:0x8007000B)
  20. Exchange 2010 实用小技巧

热门文章

  1. FastFDS常用命令
  2. js常用正则表达式大全--如:数字,字符等
  3. JQueryEsayUI的datagrid分页
  4. Linux 内核链表 list.h 的使用
  5. git 教程2 (git常用命令解说)
  6. nginx (待更新)
  7. Project Euler 28 Number spiral diagonals
  8. 运用cat EOF添加文件
  9. 做支付遇到的HttpClient大坑
  10. RobotFrameWork+APPIUM实现对安卓APK的自动化测试----第七篇【元素定位介绍】