123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 100px;
- height: 100px;
- background-color: red;
- border-radius: 20px;
- box-shadow: 10px 10px 1px black;
- text-wrap: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- text-shadow: 3px 3px 1px blue;
- }
- .box2{
- width: 200px;
- height: 200px;
- border:1px solid black;
- /* background-image: url("./img/image4.png");
- background-size: 100px 100px;
- background-repeat: no-repeat;
- background-position: right bottom; */
- background:red url("./img/image4.png") no-repeat right bottom/100px 100px;
- }
- </style>
- </head>
- <body>
- <!-- <div class="box">
- 四个值: 第一个值为左上角,第二个值为右上角,第三个值为右下角,第四个值为左下角。
- </div> -->
- <div class="box2"></div>
- </body>
- </html>
|