인프런 커뮤니티 질문&답변

전현욱님의 프로필 이미지

작성한 질문수

[코드캠프] 부트캠프에서 만든 고농축 프론트엔드 코스

▶ 싸이월드 만들기 4탄

싸이월드 +

해결된 질문

23.06.21 23:55 작성

·

265

0

1.PNG

home.html이나 game.html은 css가 정상적으로 적용되는데
jukebox.html만 css가 적용되지않습니다 왜그런가욤..

 


jukebox.html:

<!DOCTYPE html>
<html lang="ko">
<head>
    <title>JUKEBOX</title>
    <link href="./styles/jukebox.css">

</head>
<body>
    <div class="wrapper">
        <div class="wrapper__header">
            <div class="wrapper__title">
                <div class="title">추억의 BGM</div>
                <div class="subtitle">TODAY CHOICE</div>
            </div>
            <div class="divideLine"></div>
        </div>
        <div class="wrpper__body">
            <div class="wrapper__title">
                <div class="title">추억의 BGM</div>
                <div class="subtitle">TODAY CHOICE</div>
            </div>
        </div>
    </div>
</body>
</html>

 

jukebox.css:

*{
    box-sizing: border-box;
    margin: 0px;
}

html, body{
    width: 100%;
    height: 100%;
}

.title{
    color: #55b2e4;
    font-size: 13px;
    font-weight: 700;
}

.subtitle{
    font-size: 8px;
    padding-left: 5px;
}

.divideLine{
    width: 100%;
    border-top: 1px solid gray;
}

답변 1

0

노원두님의 프로필 이미지
노원두
지식공유자

2023. 06. 22. 09:47

안녕하세요! 현욱님!

link 태그에 rel='stylesheet' 가 빠진 것 같아요!