강의

멘토링

커뮤니티

Inflearn Community Q&A

dbj9254147's profile image
dbj9254147

asked

A real introductory all-in-one development boot camp for non-majors

Product Details Page Implementation - 3

css import할때요...

Resolved

Written on

·

607

1

import "/.index.css";

임폴트하는데,  작은따옴표로 임폴트하면 되는데,

큰따옴표로 임폴트하면 안되는 경우가 있더라구요. 될때도있고,,,

혹시 이유가 따로 있을까요???

nodejsjavascriptexpress머신러닝 배워볼래요? HTML/CSSreact-nativereacttensorflow

Answer 3

2

일단 CSS에서 다른 CSS를 import 하려면 @import 골뱅이를 붙인 명령어를 사용해야 합니다.

그리고 쌍따옴표 안의 css 파일 지정에 오타가 있는것 같습니다. "/.index.css"; => "./index.css" 로 바꾸고 다시 시도해 보시기 바랍니다.

.

[변경 전]

import "/.index.css";

.

[변경 후]

@import "./index.css";

grab님의 프로필 이미지
grab
Instructor

답변 감사합니다 :)

다만 본 문법은 CSS 파일에서 다른 CSS를 import할 때 사용하는 구문인 것 같아요!

1

grab님의 프로필 이미지
grab
Instructor

import에 큰따옴표나 작은따옴표 모두 정상적으로 동작하는 것으로 알고 있습니다!

혹시 안되실 때 에러 로그를 보여주시면 파악이 쉬울 것 같아요 :)

0

dbj9254147님의 프로필 이미지
dbj9254147
Questioner

앗 그렇군요 답변 감사합니다 ㅎㅎ!!!

dbj9254147's profile image
dbj9254147

asked

Ask a question