15_控制边框方向.html 675 B

12345678910111213141516171819202122232425
  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. /* border:1px solid black; */
  10. /* 控制边框方向 */
  11. /* top 上边框 */
  12. /* right 右边框 */
  13. /* bottom 下边框 */
  14. /* left 左边框 */
  15. /* border-top: 1px solid red;
  16. border-right: 1px solid red; */
  17. border-bottom: 1px solid red;
  18. /* border-left: 1px solid red; */
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="box">hello world</div>
  24. </body>
  25. </html>