颜色渐变linear-gradient(yellow,red)黄红的开始位置迷糊
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>线性渐变</title>
<style type="text/css">
/*此处写代码*/
.t1{
width: 200px;
height: 200px;
background: -moz-linear-gradient(yellow,red);
}
.t2{
width: 200px;
height: 200px;
background: -moz-linear-gradient(right,yellow,red);
}
.t3{
width: 200px;
height: 200px;
background: -moz-linear-gradient(right bottom,yellow,red);
}
</style>
</head>
<body>
<!--此处写代码-->
<div class="t1"></div>
<div class="t2"></div>
<div class="t3"></div>
</html>
代码里黄色在前面,但效果只有效果t1 个人感觉是对的黄到红的渐变
为什么t2 ,t3就是红色先开始,而不是黄色先开始
11
收起
正在回答 回答被采纳积分+1
2回答
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星