Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

ksw_devlog

TIL 03.07 - 최종 프로젝트 5주차 본문

TIL

TIL 03.07 - 최종 프로젝트 5주차

kimcoach 2023. 3. 7. 23:51
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;
`;