FE/CSS

[ CSS ] 3단 그라디언트

HEON.D 2021. 4. 29. 10:00
#grad1 {
    height: 200px;
    background: -webkit-linear-gradient(#4cbfca, #061114, #4cbfca); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#4cbfca, #061114, #4cbfca); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#4cbfca, #061114, #4cbfca); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#4cbfca, #061114, #4cbfca); /* Standard syntax (must be last) */
}

 

'FE > CSS' 카테고리의 다른 글

[ CSS ] 나눔고딕  (0) 2021.04.30
[ CSS ] 구글웹폰트  (0) 2021.04.29
[ CSS ] Pesticide  (0) 2021.04.28
[ CSS ] Selection Color  (0) 2021.04.08
[ CSS ] 말줄임  (0) 2021.04.04