해결된 질문
작성
·
283
0
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;
}