페이지별 적용
•
•
background: url("내가 원하는 링크")로 이미지 변경이 가능합니다.
<head>
<style>
.notion-app:before {
content: "";
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -10;
background: url("https://cdn.lazyrockets.com/homepage/360abb10007541a9b4a3e9f04f7a9343_crumbled-paper-1.jpg") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.notion-frame {
background-color: transparent !important;
}
</style>
</head>
HTML
복사
전체 페이지에 적용
HEAD 영역에 아래 코드를 저장해 주세요.
<style>
.notion-app:before {
content: "";
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -10;
background: url("https://cdn.lazyrockets.com/homepage/360abb10007541a9b4a3e9f04f7a9343_crumbled-paper-1.jpg") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.notion-frame {
background-color: transparent !important;
}
</style>
HTML
복사