17_border.html 597 B

1234567891011121314151617181920212223
  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: 200px;
  10. height: 200px;
  11. /* border:10px solid blue; */
  12. border-top:10px solid blue;
  13. /* transparent 透明的颜色 */
  14. border-right: 10px solid transparent;
  15. border-bottom: 10px solid green;
  16. border-left: 10px solid orange;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="box"></div>
  22. </body>
  23. </html>