老师 帮忙检查下
来源:2-13 编程练习
lcy_18
2020-08-02 19:58:36
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
body {
background: #f3f3f3;
}
/*此处补充代码*/
div{
width: 100px;
height: 200px;
border: 5px solid #FF0000;
}
div.left{
border-radius: 50px /50px 30px 50px 0px;
transform: translate(90px) rotate(90deg);
}
div.middle{
border-radius: 15px 35px 100px 10px/15px 40px 100px 10px;
transform: translate(90px);
}
div.right{
margin-top: 50px;
border-radius: 15px 35px 15px 40px /15px 35px 15px 40px;
transform: translate(90px);
}
</style>
</head><body>
<!--此处补充代码-->
<div class="left"></div>
<div class="middle"></div>
<div class="right"></div>
</body>
</html>
1回答
同学你好,整体效果实现的不错,继续加油,祝学习愉快~
相似问题