작성
·
340
답변 1
1
경로를 잘못하신 것 같아요.
스크린샷 1번을 보시면 style.css와 responsive.css가 css 폴더에 있으니까 링크는 아래처럼 해야 합니다. 아래처럼 하지 않아서 스타일이 링크가 안되는거에요.
▼상대주소로 하는 경우
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
▼절대주소로 하는 경우
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/responsive.css">
그리고 스크린샷에 있는 2번 보시면 절대로 파일명은 한글 쓰지 마시고 띄어쓰기 쓰지 마시고 대소문자 혼용하지 말고 소문자를 기준으로 하세요.