4회차: 23/02/06 15:00 ~ 19:00
계획: CSS 기본 정리 (1)
목적: React 사용을 위함
방향: CSS의 기본 문법을 정리
선택자 { 속성: 속성값; ...}
<h3>우도</h3>
<h3 id="hallasan">한라산 국립공원</h3>
<h3>성산 일출봉</h3>
<h3>군산 오름</h3>
h1 {
font-size: 24px;
}
#hallasan {
color: #f56513;
}
.place {
font-size: 16px;
font-weight: 400;
}
#ffff00
rgb(255, 255, 0)
rgba(255, 255, 0, 0.5)
<div id="parent">
저는 높이가 320px입니다.
<div id="child">
저는 높이가 160px이에요!
</div>
</div>
#parent {
background-color: #A655ED;
height: 320px;
}
#child {
background-color: #6942D6;
height: 50%;
}
<div id="parent">
저는 16px입니다.
<div id="child">
저는 64px이에요!
</div>
</div>
#parent {
font-size: 16px;
}
#child {
font-size: 4em;
}
<html>
태그의 font-size 크기<html>
<body>
저는 18px 입니다.
<div id="other">
저는 32px이에요!
</div>
</body>
</html>
html {
font-size: 16px;
}
body {
font-size: 18px;
}
#other {
font-size: 2rem;
}