1.浏览器内核.css 353 B

1234567891011121314
  1. #box {
  2. width: 200px;
  3. height: 200px;
  4. background: #00f;
  5. border-radius: 50%;
  6. /* 兼容chrome浏览器 或者safari浏览器 */
  7. -webkit-border-radius: 5px;
  8. /* 兼容火狐浏览器 */
  9. -moz-border-radius: 5px;
  10. /* 兼容欧鹏浏览器 */
  11. -o-border-radius: 5px;
  12. /* 兼容IE浏览器 */
  13. -ms-border-radius: 5px;
  14. }