CSS 클래스 셀렉터

Jmnote (토론 | 기여)님의 2014년 11월 26일 (수) 09:14 판 (→‎같이 보기)

1 개요

CSS class selector
CSS 클래스 셀렉터
  • 특정 클래스명을 가진 모든 HTML 요소에 적용됨
.클래스명 { 속성: ; }

2 예시

<style type='text/css'>
.redbox {
  height: 30px;
  width: 30px;
  background-color: red;
}
p.hometown {
  background-color: yellow;
}
</style>
<div class='redbox'></div>
<p>제 이름은 Alice입니다.</p>
<p class='hometown'>저는 Springfield에 삽니다.</p>
<p>제 이름은 Bob입니다.</p>
<p class='hometown'>저도 Springfield에 삽니다.</p>

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}