请问老师这样正确吗
来源:2-14 编程练习
hy_wang
2018-05-24 17:39:11
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
body {
background: #f3f3f3;
}
div{
height: 200px;
width: 100px;
border:5px solid red;
float: left;
margin-left: 50px;
}
.one{
height: 100px;
width: 200px;
border-radius: 0 40px 15px 40px/0 50px 50px 30px;
}
.two{
border-radius: 10px 40px 100px 10px;
}
.three{
border-radius: 20px 40px 20px 40px;
}
</style>
</head>
<body>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</body>
</html>请问老师正确吗
1回答
效果实现的没有问题,继续加油!
相似问题