🔥새해맞이 특별 라이브 선착순 신청🔥

CSS_basic2

CSS 속성을 스스로 알아내기

검색으로 해결하기: 'CSS text size property'

The font-size property sets the size of a font.

 

font-size 속성을 이용해 글자 크기 변경

  h1{
    font-size:45px;
  }

px는 컴퓨터에서 사용하는 단위이다.

 

text-align 속성을 이용해 텍스트를 가운데로 정렬

div.a {
  text-align: center;
}

div.b {
  text-align: left;
}

div.c {
  text-align: right;
}

div.c {
  text-align: justify;
}

 

The text-align property specifies the horizontal alignment of text in an element.

 

 

 

댓글을 작성해보세요.

채널톡 아이콘