[CSS] CSS Dictionary

Daily Dev Blog .·2021년 11월 25일
0

HTML/CSS

목록 보기
2/2
post-thumbnail

Text Property

1.line-height

| 줄간격 property |
.class {
 line-height: 1; /*px, rem등 단위없이 1일경우 default는 font-size가 된다.*/
}

Line Property

1.border

| border: 너비 | 스타일 | 색; |
다음의 값 중 한 개에서 세 개를 선택해서 지정하며 순서는 영향을 주지 않는다.

tip) border의 default 너비는 outer로 지정이 된다. inner로 지정하고 싶다면
box-sizing property를 사용하면 된다.
<!-- box-sizing -->

.class {
 box-sizing: border-box;
}
profile
Better Than Yesterday🌳

0개의 댓글