CSS Gradiente linear
#grad {
background-image: linear-gradient(to right, #f1b1b1 , #82e6e8);
}
Code_Breaker
#grad {
background-image: linear-gradient(to right, #f1b1b1 , #82e6e8);
}
/*From bottom to top*/
background: rgb(166,166,166);
background: linear-gradient(0deg, rgba(166,166,166,1) 0%, rgba(255,255,255,1) 29%);
background: #0f2027; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #0f2027, #203a43, #2c5364); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #0f2027, #203a43, #2c5364); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
letter-spacing: 5px !important;
background-image: linear-gradient(60deg, #070ff4, #f90a0a);
background-clip: text;
color: transparent;
aka datusing
background: repeating-linear-gradient(to right top, rgb(0, 102, 255), rgb(0, 204, 255));
background: #000428; /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #000428, #004e92); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #000428, #004e92); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */