๋ชฉ์ฐจ
728x90
EMMET์ด๋?
html์ด๋ css ๋ฑ์ ์ฝ๋๋ฅผ ์์ฑํ ๋ ํจ๊ณผ์ ์ผ๋ก ์๊ฐ์ ๋จ์ถ์์ผ์ฃผ๋ ํ์ฅ๊ธฐ๋ฅ!
์ ๋ ฅ ํ Tabํค or Enterํค ๋๋ฅด๊ธฐ!
HTML
! & html:5
html ํ์ค DTD๋ฌธ์
!
>>>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
link
๋งํฌํ์ด์ง
link
>>> <link rel="stylesheet" href="">
link:css, favicon ๋ฑ
link:css
>>> <link rel="stylesheet" href="style.css">
.
div ํ๊ทธ์์ฑ
.
>>> <div class=""></div>
.(ํด๋์ค๋ช )
์ง์ ํ ํด๋์ค๋ช ๊ฐ์ง divํ๊ทธ ์์ฑ
.title
>>> <div class="title"></div>
#(id๋ช )
์ง์ ํ id๋ช ๊ฐ์ง divํ๊ทธ ์์ฑ
#title
>>> <div id="title"></div>
ํ๊ทธ๋ช .(ํด๋์ค๋ช )
ํ๊ทธ๋ช #(id๋ช )
span.title
>>> <span class="title"></span>
span#title
>>> <span id="title"></span>
>
์์ ๋ ธ๋๋ก ์ถ๊ฐ
table>tr>td
>>>
<table>
<tr>
<td></td>
</tr>
</table>
*๋ก ์ฌ๋ฌ ๊ฐ๋ฅผ ํ ๋ฒ์ ์์ฑ ๊ฐ๋ฅ
table>tr>td*3
>>>
<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
+
ํ์ ๋ ธ๋๋ก ์ถ๊ฐ
div>li+ol
>>>
<div>
<li></li>
<ol></ol>
</div>
CSS
์์ฑ:๊ฐ์ผ๋ก ์ค์ ๊ฐ ํ ๋ฒ์ ์์ฑ ๊ฐ๋ฅ
%๋ p๋ก
font
fs
๊ธ์ ๋ชจ์
fs
>>> font-style: italic;
fz
๊ธ์ ํฌ๊ธฐ
fz
>>> font-size: ;
fz์ซ์ ๋ก px๊ฐ์ ๋ฃ์ ์ ์๋ค.
fz30
>>> font-size: 30px;
fw
๊ธ์ ๊ตต๊ธฐ
fw
>>> font-weight: normal;
color
c
์
c
>>> color: #000;
background
bg
๋ฐฐ๊ฒฝ
bg
>>> background: #000;
bgc
๋ฐฐ๊ฒฝ์
bgc
>>> background-color: #fff;
border
bd
์ค๊ณฝ์
bd
>>> border: 1px solid #000;
bx
box-sizing: border-box;
bdrs
๋ชจ์๋ฆฌ ๋ฅ๊ธ๊ฒ
bdrs
>>> border-radius: ;
bdrs15
>>> border-radius: 15px;
text
tt
ํ ์คํธ ํํ ์ค์
tt
>>> text-transform: uppercase;
ta
ํ ์คํธ ์ ๋ ฌ
ta
>>> text-align: left;
ta:r
>>> text-align: right;
ta:c
>>> text-align: center;
position
pos
pos
>>> position: relative;
pos:r pos:a pos:f
pos:r
>>> position: relative;
pos:a
>>> position: absolute;
pos:f
>>> position: fixed;
float
fl
fl
>>> float: left;
fl:r
>>> float: right;
fl:l
>>> float: left;
width&height
w
๋๋น
w
>>> width: ;
w๊ฐ / %=p๋ก ์นํ
w30
>>> width: 30px;
w100p
>>> width: 100%;
h
๋์ด
h
>>> height: ;
h30
>>> height: 30px;
'๐ | 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 |
CSS ๊ธฐ๋ณธ (1)_๋ฌธ๋ฒ,์ ํ์ (0) | 2021.12.31 |
HTML ํต์ฌ ํ๊ทธ๋ค (0) | 2021.12.31 |
๋๊ธ