📜  颜色渐变生成器 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:09.397000             🧑  作者: Mango

代码示例1
/* "element" bieng the target class item to style */
.element{
    background: rgb(2,0,36) !important;
    background: linear-gradient(331deg, rgba(2,0,36,1) 0%, rgba(139,88,94,1) 0%, rgba(53,101,125,1) 14%, rgba(40,127,156,1) 29%, rgba(0,212,255,1) 100%) !important;
    padding-bottom: 4%;
}