123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- div {
- width: 200px;
- height: 200px;
- border-radius: 50%;
- background: #f00;
- /* 谷歌浏览器 -webkit */
- -webkit-border-radius:50%;
- /* 火狐浏览器 -moz */
- -moz-border-radius:50%;
- /* IE浏览器 -ms */
- -ms-border-radius:50%;
- /* 欧鹏浏览器 -o */
- -o-border-radius:50%;
- }
- </style>
- </head>
- <body>
- <div></div>
- </body>
- </html>
|