CSS란 뭔가
: Cascading Style Sheets
왜 필요한가
: HTMl로 작성된 파일을 꾸미는 데 목적이 있다.
: 말 그대로 Style Sheets
CSS 사용법 분류
<link rel="stylesheet" href="style.css">
css 관련 내용을 html 상단부에 작성하는 방식
head 태그 부분에 stryle 태그를 이용해 작성한다
(head part)
<style>
div{background-color: dodgerblue;
color: floralwhite;}
</style>
(body part)
<div> test </div>
<div style="background-color: dodgerblue; color: white;">abc</div>