1.浏览器的内核.html 676 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. div {
  9. width: 200px;
  10. height: 200px;
  11. border-radius: 50%;
  12. background: #f00;
  13. /* 谷歌浏览器 -webkit */
  14. -webkit-border-radius:50%;
  15. /* 火狐浏览器 -moz */
  16. -moz-border-radius:50%;
  17. /* IE浏览器 -ms */
  18. -ms-border-radius:50%;
  19. /* 欧鹏浏览器 -o */
  20. -o-border-radius:50%;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div></div>
  26. </body>
  27. </html>