admin 管理员组

文章数量: 887007

CSS 按钮渐变色

语法:
background-image: linear-gradient(direction, color-stop1, color-stop2, …);
下面的实例演示了从左边开始的线性渐变。起点是蓝色,慢慢过渡到天蓝色,再到蓝色:

<button>登录</button>
.login button
{font-size: 16px;width: 163px;height: 35px;background: linear-gradient(to right, blue, deepskyblue, blue);
}

效果:

本文标签: CSS 按钮渐变色