[html/css] text-indent 속성(들여쓰기)
text-indent는 문단의 첫줄 들여쓰기할 때 쓰는 속성입니다.
들여쓰기만 잘 써도 문장이 멋스러워 보이죠...^^
text-indent 속성은 텍스트를 담고 있는 블록 컨테이너에 적용합니다.
▶속성값
길이값 px, em, cm 등의 단위로 지정, 기본값은 0임.
% 부모 요소 너비에 상대적인 백분율
*음수값도 가능.
▶사용 예:
div{text-indent:}
▶html/css 작성해 보겠습니다
<p> 부분엔 30px 들여쓰기
<div> 부분엔 10% 들여쓰기를 설정해 보겠습니다.
html/css |
<!DOCTYPE html> body{background: #CEFBC9;}
</style>
<div>CSS can also allow the same markup page to be presented in different styles for different rendering methods, |
실행화면 |
p태그는 모드 30px 만큼 들여쓰기 되었고
div 안은 10% 들여쓰기가 되었습니다.
text-decoration 속성(none, underline, overline, line-through)
글자색 color 속성, 배경색 background-color 속성 배우기
vertical-align 속성 자세히 알기(수직 정렬)
'css' 카테고리의 다른 글
[html/css] text-transform 속성 (대문자 전환) (0) | 2014.06.12 |
---|---|
[html/css] 수직으로 가운데 정렬 방법 (다섯 가지) (3) | 2014.06.11 |
text-decoration 속성(none, underline, overline, line-through) (1) | 2014.06.09 |
[html/css] vertical-align 속성 자세히 알기(수직 정렬) (3) | 2014.06.05 |
비표준 모드quirks mode, 표준 모드 standards mode 차이와 DOCTYPE (1) | 2014.06.02 |
댓글