linear-gradient : 선형 그라디언트 , css로 그라데이션 효과 적용 1. 그라디언트 - 방향 to bottom to top to left to right > bottom, top, left, right 방향 div 만든다. 2. css background: linear-gradient ( direction, color(start), color(end) ); .grad_bottom{background: linear-gradient(to bottom,red,blue);} .grad_top{background: linear-gradient(to top,red,blue);} .grad_left{background: linear-gradient(to left,red,blue);} .grad_righ..