๋ชฉ์ฐจ
์ญํ
HTML ํ๊ทธ๋ฅผ ์ ํํด์ ๋์์ธํ๊ณ ๋ฐฐ์นํ๋ ์ญํ
๋งํฌํ๋ ๋ฐฉ๋ฒ
1. ๋ด๋ถ ์คํ์ผ : htmlํ์ผ <head>...</html> ์ฌ์ด์ <style>...</style>
2. ์ธ๋ถ ์คํ์ผ : htmlํ์ผ ... <head>...</html> ์ฌ์ด์ cssํ์ผ ๋งํฌ
<link rel="stylesheet" href="style.css">
๊ธฐ๋ณธ ๋ฌธ๋ฒ
์ ํ์ {
์์ฑ:๊ฐ;
}
์ ํ์์ ์์๋ ๋ ํฐ ๊ฐ๋ ์ ๋จผ์ ์จ์ค๋ค.
(๊ธฐ๋ณธ์ ์ธ ์์ฑ ์์, ๋ค๋ฐ๋์ด๋ ์ ์ฉ์ ๋ฌธ์ ๋ ์์!)
ex)
body {
background-color: orange;
}
h1 {
font-size: 50px;
color: red;
}
์ ํ์
์ข ๋ฅ
ํ๊ทธ ์ ํ์
p {
font-size: 50px;
color: red;
}
ํด๋์ค ์ ํ์
.mycontent {
text-align: center;
font-size: 30px;
}
์์ด๋ ์ ํ์
#mycontent {
text-align: center;
font-size: 30px;
}
ํ๊ทธ+ํด๋์ค or ์์ด๋
p.mycontent {
font-style: italic;
color: blue;
}
h1#title {
font-size: 50px;
color: black;
}
ํด๋น ํด๋์คor ์์ด๋๋ฅผ ๊ฐ์ง ํ๊ทธ์ ์ ์ฉ๋๋ค. (๋ ์ด์์ ๋ฑ์ ์ค์ ํ๋ ํน๋ณํ ๊ฒฝ์ฐ์ ์ฌ์ฉํจ!)
๊ทธ๋ฃน ์ ํ์
h1, p {
text-align: center;
color: green;
}
css ์์ฑ์ด ์์ ํ ์ผ์นํ๋ ์ ํ์๊ฐ ์์ ๊ฒฝ์ฐ
์์ฒ๋ผ ํ ๋ฒ์ ์์ฑํ๋ค.
์ ์ฒด ์ ํ์
* {
color: blue;
}
์ ์ฒด์ ๊ณตํต์ผ๋ก ์ ์ฉํ ๋ ์ฌ์ฉํ๋ค.
ํ์ ์ ํ์
p>span {
color: orange;
}
p span {
color: orange;
}
> ํน์ ๊ณต๋ฐฑ ์ผ๋ก ํ์ ์ ํ์์ ๋ํด ์ค์ ํ ์ ์๋ค.
์ฐ์ ์์
!important > ์ธ๋ผ์ธ > ์์ด๋ > ํด๋์ค > ํ๊ทธ
ex 1)
<h1 class="text">TEXT</h1>
h1 {
color: red !important;
}
.text {
color: blue;
}
์ฐ์ ์์ ์์ผ๋ก ํด๋์ค๊ฐ ํ๊ทธ๋ณด๋ค ์์ ์์ง๋ง
!important๋ฅผ ์ ์ด์ฃผ์๊ธฐ ๋๋ฌธ์ ์ต์ฐ์ ์์๊ฐ
๋ฌ๋ผ์ก๋ค!
ex 2)
<h1 id="text" style="color : gold">TEXT</h1>
#text {
color: green;
}
id ์ ํ์๋ณด๋ค ์ธ๋ผ์ธ์ด ์ฐ์ ์์๊ฐ ๋๊ธฐ ๋๋ฌธ์
์์์ด gold๋ก ์ถ๋ ฅ์ด ๋์๋ค.
'๐ | WEB DEV > HTML CSS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
CSS ๊ธฐ๋ณธ (4)_๋ฐ์ค(border, border-radius) (0) | 2022.01.01 |
---|---|
CSS ๊ธฐ๋ณธ (3)_์์, ์์ ์ ํ์ (0) | 2021.12.31 |
CSS ๊ธฐ๋ณธ (2)_์์ (0) | 2021.12.31 |
HTML ํต์ฌ ํ๊ทธ๋ค (0) | 2021.12.31 |
HTML&CSS EMMET (w.VSCODE) (0) | 2021.12.30 |
๋๊ธ