- !important(css 강제적용)
- 해당 태그에 직접준것(인라인 방식)
- HTML 파일에서 준 style 태그(임베디드 방식)
- 외부에 있는 .css 파일을 로드 한 것
<link rel="stylesheet" href="./mycss.css">
<style type="text/css">
<!-- 예 -->
div{
border : dashed 1px blue;
}
</style>
<div style="border: dashed 1px blue;>글자</div>
-> cssOrder.html