asked
From CSS basics to usage
Background
Written on
·
125
0
body{
background-image: url('') no-repeat center center fixed
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
를 통해서 화면 전체를 덮는 배경이미지를 생성하고 싶은데 입력시 아무 변화도 없어요
Answer