크게는 세가지
1. html에 style을 이용해서 적용
<head> <style> ... </style> <head> |
2. css를 끌어와서 적용
<head> <link rel="stylesheet" type="text/css" href="./style.css"> </head> |
3. 어트리뷰트로 사용
<h1 style="color:blue;">This is a Blue Heading</h1> |
'Programming > css' 카테고리의 다른 글
css 우선순위 (0) | 2018.08.09 |
---|---|
css 문법 - id / class (0) | 2016.01.11 |
css margin / padding (0) | 2015.09.24 |
css body background (0) | 2015.09.22 |
CSS / JS 파일 용량 줄이기 (0) | 2015.09.18 |