1_test.html 779 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. #div1{
  10. width: 200px;
  11. height: 200px;
  12. /* background: #000; */
  13. border-radius: 50%;
  14. border-width: 10px;
  15. border-style: solid;
  16. border-color: black;
  17. border-bottom-color: transparent;
  18. /*
  19. -webkit-border-radius: 50% 为了兼容Chrome 或者 Safari
  20. -moz-border-radius: 50% 为了兼容火狐浏览器
  21. -0-border-radius: 50% 兼容欧朋浏览器
  22. -ms-border-radius
  23. */
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div id="div1"></div>
  29. </body>
  30. </html>