본문 바로가기

HTML & CSS

class 와 id

태그 호출할때 사용됨

 

class

*class

-여러개 사용 가능

- .class이름 으로 사용

 

*class 여러개 쓰고 싶을때는 한칸 띄기
ex)<h2 class="subtitle subtitle2">

 

*h2에 붙은 클래스title3의 태그를 쓸때

ex) h2.title3{color:red;}

 

*복수 선택할때(ctrl+shift처럼)
ex) .list1, .list1, .list3{}

 

*.subtitle이면서. subtitle.2인 애를 태그하고 싶을때는 안띄고
ex) .subtitle.subtitle.2

 


id

 

*id

-하나만 사용 가능

-#아이디명 으로 사용