21_三角形.html 696 B

1234567891011121314151617181920212223242526
  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: 30px;
  10. border:1px solid black;
  11. border-radius: 2px; */
  12. /* width: 30px;
  13. height: 30px; */
  14. width: 0;
  15. /* border:50px solid black; */
  16. border-top: 50px solid black;
  17. border-left: 50px solid rgba(0,0,0,0);
  18. border-bottom: 50px solid rgba(0,0,0,0);
  19. border-right: 50px solid rgba(0,0,0,0);
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div class="box"></div>
  25. </body>
  26. </html>