전체 글
-
html / css[CSS] 배경색 원형 그라디언트 넣기html & css 2021. 1. 25. 21:05
기본문법 : CSS Syntax background-image: radial-gradient(shape size at position, start-color, ..., last-color); background-image를 단축해서 background 로 적어줘도 된다. background-color 에서는 그라디언트가 적용되지 않더라. shape size at position shape size: 기본은 ellipse (타원)이다. 따라서 생략하면 타원으로 설정된다.(grad1, grad2) 정원을 선택한다면 circle을 앞에 적어준다. (grad3) See the Pen background-image: radial-gradient(ellipse, circle) by builderous (@n..