창작과 기록

Selector(선택자), Declaration(선언) 본문

WEB/CSS

Selector(선택자), Declaration(선언)

JesseJeong 2021. 8. 28. 13:48

출처: https://opentutorials.org/course/1

*Selector_선택자
*Declaration_선언

e.g. 

<style>
a
{
 color:black;
 text-decoration: none;
}
</style>

 


응용.
style 태그를 직접 사용할때.

e.g.

<body>
<ol>
<li><a href="2.html" style="color:red;text-decoration:underline">CSS</a></li>
</ol>
</body>


즉. style 태그 내에서 a는 선택자, color와 text-decoration은 선언하면 a 태그로 묶여진 모든 내용에 대하여 선언이 적용.
style태그를 개별적으로 사용할때는 필수적으로 선언을 하지 않아도 된다(하나의 효과 사용할때는 세미클론 사용 필요x).

 

'WEB > CSS' 카테고리의 다른 글

박스 모델  (0) 2021.08.28
Selector(선택자) 서열  (0) 2021.08.28