coding/css(sass,tailwind,materialUi)

css 풀배경으로 설정하기

J허브 2022. 7. 30. 14:56
반응형
1
2
3
4
5
6
7
8
9
#fullbackground{
    background: 
    url("https://풀화면이미지주소.jpg") 
    no repeat;
    background-size: cover;
    background-position: center center;
    width: 100vw;
    height: 100vh;
}
cs
반응형