1_index.html 607 B

1234567891011121314151617181920212223
  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: red;
  13. border-radius: 50%;
  14. /* -webkit-border-radios: 5px 为了兼容chrome浏览器 或者safari 浏览器*/
  15. /* -moz-border-radius: 5px 兼容火狐浏览器*/
  16. /* -o-border-radius: 5px 兼容欧鹏浏览器*/
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div id="div1"></div>
  22. </body>
  23. </html>