January 17, 2022 https://www.youtube.com/watch?v=kn8HPNwPEkw&t=103s
npx create-react-app disney-plus-clone --template redux
public 폴더에 images와 video를 저장해두고
불러올때 위 사진과 같이 불러온다
[html/css]background 속성(배경 전체 지정)
const Container = styled.main`
min-height: calc(100vh - 70px); /* 전체 높이에서 헤더를 빼줌 */
padding: 0 calc() (3.5vw + 5px);
position: relative;
&:before {
background: url('/images/home-background.png') center center / cover
no-repeat fixed;
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
`;