Nuke Olaf - Log Store
CSS 분리할때, background-image url 주의할 점 본문
디렉토리가 다음과 같이 되어있는 경우, home.css 에서 background-image url 로 이미지를 참조할때는
경로 앞에 "../"을 붙여야한다.
../ 이것은 기준 디렉토리의 상위 디렉토리를 의미한다.
.home-image {
position: relative;
background-image: url("../img/olaf.jpg");
height: 100vh;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
margin: 0;
padding: 0;
}
'Language > [PHP]' 카테고리의 다른 글
PHP - file_put_contents 가 실행되지 않음 (0) | 2020.02.03 |
---|---|
HTML - <form> 태그 : 사용자에게 입력값을 받기 (0) | 2020.02.03 |
HTML 에서 CSS 와 JavaScript 분리하기 (1) | 2020.02.02 |
HTML 문서내에서 Java Script 다루는 방법 (0) | 2020.01.29 |
HTML - 수평방향 타임라인 (Horizontal Timeline) 만들기 (0) | 2020.01.29 |
Comments