两个问题,三角形选择后为什么会错位,为什么旋转后缩放就失效了
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>2-3</title>
<style type="text/css">
.container{
width: 600px;
height: 400px;
background: red;
margin: 0 auto;
}
.father{
width: 0;
height: 0;
border-bottom: 70px solid yellow;
border-left: 100px solid transparent;
border-right: 100px solid transparent;
position: relative;
top: 100px;
left: 100px;
transform: scale(0.2);
transform: rotate(36deg);/*为什么旋转后缩放就失效了*/
}
.father:before{
content: '';
width: 0;
height: 0;
border-bottom: 70px solid blue;
border-left: 100px solid transparent;
border-right: 100px solid transparent;
transform: rotate(72deg);
position: absolute;
left: -100px;
}
.father:after{
content: '';
width: 0;
height: 0;
border-bottom: 70px solid green;
border-left: 100px solid transparent;
border-right: 100px solid transparent;
position: absolute;
left: -100px;
transform: rotate(144deg);
}
</style>
</head>
<body>
<div class="container">
<div class="father"></div>
<div class="father"></div>
<div class="father"></div>
<div class="father"></div>
<div class="father"></div>
</div>
</body>
</html>
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 2198 份
- 解答问题 5012 个
如果你有web端基础,既想进阶,又想进军移动端开发,那就来吧,我们专题为你带来的课程有HTML5、CSS3、移动基础、响应式、bootstrap、less等,让你在前端道路上畅通无阻!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星