请老师帮忙检查一下
来源:2-13 编程练习
慕田峪2009896
2019-08-27 11:30:48
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
body {
background: #f3f3f3;
}
div{
width:100px;
height:200px;
border:5px solid red;
margin:50px;
float:left;
}
.fir{
border-radius:40px 60px 40px 0 / 40px 30px 50px 0;
transform:rotate(90deg);
}
.sec{
border-radius:10px 50px 90px 10px/10px 50px 90px 10px;
}
.thi{
border-radius:10px 40px 10px 30px/10px 40px 10px 30px;
}
/*此处补充代码*/
</style>
</head>
<body>
<!--此处补充代码-->
<div class="fir"></div>
<div class="sec"></div>
<div class="thi"></div>
</body>
</html>
1回答
同学你好!
代码效果实现正确。
如果帮助到了你,欢迎采纳,祝学习愉快~
相似问题