1_CSS3新属性.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 100px;
  10. height: 100px;
  11. background-color: red;
  12. border-radius: 20px;
  13. box-shadow: 10px 10px 1px black;
  14. text-wrap: nowrap;
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. text-shadow: 3px 3px 1px blue;
  18. }
  19. .box2{
  20. width: 200px;
  21. height: 200px;
  22. border:1px solid black;
  23. /* background-image: url("./img/image4.png");
  24. background-size: 100px 100px;
  25. background-repeat: no-repeat;
  26. background-position: right bottom; */
  27. background:red url("./img/image4.png") no-repeat right bottom/100px 100px;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <!-- <div class="box">
  33. 四个值: 第一个值为左上角,第二个值为右上角,第三个值为右下角,第四个值为左下角。
  34. </div> -->
  35. <div class="box2"></div>
  36. </body>
  37. </html>