<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
width: 400px;
height: 400px;
border:2px solid #abcdef;
margin:50px;
}
.box1{
background-image: linear-gradient(to right,red,yellow);
}
.box2{
background-image: linear-gradient(to right,red 50%,yellow 50%);
}
.box3{
background-image: linear-gradient(to right,red 100px,yellow 300px);
}
.box4{
background-image: linear-gradient(red 200px,green 300px,blue 400px);
}
.box5{
background-image: linear-gradient(to top,red,rgba(0,0,0,0),yellow);
}
.box6{
background-image: linear-gradient(to top,red,transparent,yellow);
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
<div class="box5"></div>
<div class="box6"></div>
</body>
</html>
详解:51 指定渐变颜色的起始点和使用多个颜色 len-gradient
原创
©著作权归作者所有:来自51CTO博客作者陈业贵的博客的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Python获取颜色RGB值
Python获取颜色RGB值
Python 图像处理 屏幕截图