티스토리 뷰
CSS 구성
span {
color:red;
}
- span : selector
- color : property
- red : value
적용방법
우선순위 : inline > internal = external
1.inline
<h1 class="headline" style="color:red;">apple</h1>
2.internal
<head>
<title></title>
<style>
.headline {
color:blue;
}
</style>
</head>
<body>
...
</body>
3.external
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
...
</body>
참고
'Language > HTML&CSS' 카테고리의 다른 글
미디어쿼리 min-width와 max-width (0) | 2020.12.05 |
---|---|
position 속성 (0) | 2020.12.04 |
display 속성 (0) | 2020.12.04 |
댓글