38_三角形2.html 672 B

12345678910111213141516171819202122232425262728
  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. .box1{
  9. width: 400px;
  10. height: 400px;
  11. background-color: blue;
  12. }
  13. .box2{
  14. width: 0;
  15. height: 0;
  16. border-top: 100px solid red;
  17. border-left: 100px solid transparent;
  18. /* border-right: 100px solid yellow; */
  19. /* border-bottom: 100px solid purple; */
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div class="box1">
  25. <div class="box2"></div>
  26. </div>
  27. </body>
  28. </html>