老师看看这样好吗
来源:2-14 编程练习
光aaaaand影
2019-05-28 17:45:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
body {
background: #f3f3f3;
}
/*此处补充代码*/
div{
width:100px;
height:200px;
border:2px solid red;
float:left;
margin-left:200px;
}
div:nth-of-type(1){
transform:rotate(90deg);
border-radius:50px 70px 40px 0/50px 20px 40px 0;
}
div:nth-of-type(2){
border-radius:10px 50px 90px 10px/10px 30px 90px 10px;
}
div:nth-of-type(3){
border-radius:10px 50px;
}
</style>
</head>
<body>
<!--此处补充代码-->
<div></div>
<div></div>
<div></div>
</body>
</html>1回答
你好,效果是不错的,很棒哦!
祝学习愉快!
相似问题