1234567891011121314151617181920212223242526272829 |
- <!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>
- #box {
- width: 200px;
- height: 200px;
- background: #f00;
- border-radius: 50%;
- /* 谷歌浏览器 */
- -webkit-border-raduis: 50%;
- /* 火狐浏览器 */
- -moz-border-raduis: 50%;
- /* IE浏览器 */
- -ms-border-raduis: 50%;
- /* 欧鹏浏览器 */
- -o-border-raduis: 50%;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <!--
- -->
- </body>
|