请老师帮忙检查一下
来源:2-13 编程练习
慕虎8562901
2020-04-15 20:39:56
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
body {
background: #f3f3f3;
}
/*此处补充代码*/
div{
height:200px;
width:100px;
border:5px solid red;
position:absolute;
left:50%;
}
.one{
border-radius:50px / 50px 20px 50px 0px;
transform:rotate(90deg) translate(50px,200px);
}
.two{
border-radius:10px 50px 90px 10px / 10px 50px 100px 10px;
}
.three{
border-radius:10px 50px / 10px 50px;
transform:translate(150px);
}
</style>
</head>
<body>
<!--此处补充代码-->
<div class="one">
</div>
<div class="two">
</div>
<div class="three">
</div>
</body>
</html>1回答
好帮手慕久久
2020-04-16
同学你好,效果正确,很棒,继续加油!祝学习愉快!
相似问题