老师,请帮忙看下代码,为什么白色的边框一直显示红色呢?要怎么修改呢?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>2-5</title>
<style type="text/css">
div {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
box-sizing: border-box;
width: 400px;
height: 400px;
margin: auto;
border: 1px solid red;
border-bottom: 200px solid red;
border-radius: 50%;
transform-origin: 50% 50%;
animation-name: rotate;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count:infinite;
}
div:after{
content: "";
position: absolute;
display:block;
top: 100px;
left: 0px;
width: 50px;
height: 50px;
border:75px solid #f00;
border-radius: 50%;
background: #fff;
}
div:before{
content: "";
position: absolute;
top: 100px;
right: 0px;
width: 50px;
height: 50px;
border:75px solid white;
border-radius: 50%;
background: #f00;
}
@keyframes rotate{
from{transform:rotatez(0deg)}
to{transform:rotatez(360deg)}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 2198 份
- 解答问题 5012 个
如果你有web端基础,既想进阶,又想进军移动端开发,那就来吧,我们专题为你带来的课程有HTML5、CSS3、移动基础、响应式、bootstrap、less等,让你在前端道路上畅通无阻!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星