๐ซ CSS ํ์ผ HTML ์ฒจ๋ถํ๊ธฐ
- HTML ํ์ผ์์ CSS ํ์ผ ๊ฒฝ๋ก ์ง์
<link href="cssํ์ผ๊ฒฝ๋ก~~" rel="stylesheet">
- CSSํ์ผ์ ์คํ์ผ ์ง์
/* class selector */
.profile {
width: 100px;
display:block;
margin-left: auto;
margin-right:auto;
}
.title {
font-size: 16px;
color:#888;
letter-spacing: 1px;
}
/* tag selector */
h3 {
text-align: center;
}
p {
text-align: center;
}
span {
color:blue;
}
/* id selector */
#special{
text-align: center;
}
- HTML์ CSS selector ์ฒจ๋ถ
<h3 class="title">Dozzing World</h3> <!-- Class -->
<p><span>Front-end</span> Developer</p> <!-- Tag -->
<h3 id="special">์ฟ ํค์ฟ ๋ง ๋ธ๋ก๊ทธ ์
๋๋ค.</h3> <!-- ID -->
ย
๐ซ ์ ๋ ํฐ์ ์ฐ์ ์์
- style = โโ
- #id
- .class
- tag