ksw_devlog
TIL 03.07 - 최종 프로젝트 5주차 본문
CSS, background : linear-gradient()
배경색을 2가지 이상 넣고 싶을 때 사용
ex)
const YellowBar = styled.div`
width: 1152px;
height: 320px;
background-color: #feff80;
background: linear-gradient(#111111 28%, #feff80 28%, #feff80 72%, #111111 72%);
display: flex;
align-items: center;
position: relative;
`;
'TIL' 카테고리의 다른 글
TIL 03.09 - 최종 프로젝트 5주차 (0) | 2023.03.10 |
---|---|
TIL 03.08 - 최종 프로젝트 5주차 (0) | 2023.03.09 |
TIL 03.06 - 최종 프로젝트 5주차 (0) | 2023.03.07 |
WIL 18주차 - 최종 프로젝트 4주차 (0) | 2023.03.06 |
TIL 03.03 - 최종 프로젝트 4주차 (0) | 2023.03.05 |