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

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