<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
div{
width: 200px;
height: 200px;
background-color: darkmagenta;
-webkit-border-radius: 40px;/*针对谷歌和苹果浏览器*/
-o-border-radius: 40px;/*针对欧朋浏览器*/
-moz-border-radius: 40px;/*针对火狐浏览器*/
-ms-border-radius:40px;/*针对IE浏览器*/
border-radius: 40px;
}
</style>
<title>属性前缀</title>
</head>
<body>
<div>
</div>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
div{
width: 200px;
height: 200px;
background-color: darkmagenta;
-webkit-border-radius: 40px;/*针对谷歌和苹果浏览器*/
-o-border-radius: 40px;/*针对欧朋浏览器*/
-moz-border-radius: 40px;/*针对火狐浏览器*/
-ms-border-radius:40px;/*针对IE浏览器*/
border-radius: 40px;
}
</style>
<title>属性前缀</title>
</head>
<body>
<div>
</div>
</body>
</html>