1.浏览器的内核.html 669 B

123456789101112131415161718192021222324252627
  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. background: #00f;
  12. border-radius: 50%;
  13. /* 谷歌浏览器 */
  14. -webkit-border-radius: 50%;
  15. /* 火狐浏览器 */
  16. -moz-border-radius: 50%;
  17. /* IE浏览器 */
  18. -ms-border-radius: 50%;
  19. /* 欧鹏浏览器 */
  20. -o-border-radius:50%;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="box"></div>
  26. </body>
  27. </html>