강의

멘토링

커뮤니티

Inflearn Community Q&A

hahahahaju0985's profile image
hahahahaju0985

asked

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

[GrabMarket] Implementing Web Screens - 1

도와주세요ㅜㅜ

Written on

·

231

1

영상보고 따라했는데 색 없이 흰 바탕만 나와요ㅠㅠ
<html>
  <head>
    <title>그랩마켓</title>
    <link herf="index.css" type="text/css" rel="stylesheet" />
  </head>
  <body>
    <div id="header"></div>
    <div id="body"></div>
    <div id="footer"></div>
  </body>
</html>
여긴 css에요
#header {
  height64px;
  background-color: black;
}

#body {
  height100%;
  background-color: blue;
}
#footer {
  height200px;
  background-color: red;
}
react머신러닝 배워볼래요? HTML/CSSexpresstensorflowjavascriptreact-nativenodejs

Answer 3

3

CSS파일이 열리지 않아서 생기는 문제입니다.

link 태그 작성하실 때 오타가 있습니다.

<link> 태그의 herf="style.css" 를 href="style.css" 로 바꾼 후 다시 열어보시기 바랍니다.

1

hahahahaju0985님의 프로필 이미지
hahahahaju0985
Questioner

와ㅠㅠㅠ감사합니다

0

grab님의 프로필 이미지
grab
Instructor

잘 해결되셨다니 다행이네요 😀

hahahahaju0985's profile image
hahahahaju0985

asked

Ask a question