CSS 구문

pitbull terrier·2020년 8월 28일
0

HTML/CSS

목록 보기
5/5

Selector는 스타일을 지정할 HTML 요소를 가르킴.
Declaration은 세미콜론으로 구분 된 하나 이상의 Declaration이 포함됨.
여러 CSS Declaration는 세미콜론으로 구분하고 Declaration block은 중괄호로 묶음.

이 예에서 모든 <p> 요소는 빨간색 텍스트 색상으로 가운데 정렬됨.

p {
  color: red;
  text-align: center;
}
profile
yoonbitnara.github.io

0개의 댓글