1_test.html 624 B

1234567891011121314151617181920212223242526
  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. /*
  15. -webkit-border-radius: 50% 为了兼容Chrome 或者 Safari
  16. -moz-border-radius: 50% 为了兼容火狐浏览器
  17. -0-border-radius: 50% 兼容欧朋浏览器
  18. -ms-border-radius
  19. */
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div id="div1"></div>
  25. </body>
  26. </html>