AI智能
改变未来

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);}

效果:

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » CSS 按钮渐变色