Web/CSS
(CSS) CSS style 우선순위
haramang
2021. 10. 30. 10:34
1순위: ! Important
- 사용을 자주하지 않는것을 권장
2순위: Inline
- 예) <p class="redText" style="color: red;">CSS is awesome</p>.
3순위: Internal style
- HTML 구문내의 <head> 와 <style> 사이에 적혀지는 스타일
4순위: External Stylesheet
- 별도의 css 파일: html과 css파일은 링크 필수!
<link rel="stylesheet" type="text/css" href="mystyle.css" />