티스토리 뷰
text-align: left; 왼쪽 정렬
text-align: rightt; 오른쪽 정렬
text-align: center; 가운데 정렬
text-align: justify; 양쪽 정렬
https://spacemonkey925.tistory.com/100
[css trick] text-align : justify
div 안에 글을 정렬할 때 text-align 을 많이 사용한다. 이 중에 justify 속성은 div의 폭에 맞춰 글을 정렬하는 것이다.허나 영문이 아닌 아시아 언어는 이 속성이 제대로 적용되지 않는다. 이 름 :핸 드
spacemonkey925.tistory.com
[ 양쪽 정렬이 진행이 안될때 ]
<style>
.justifyAll:after{
content:'';
display:inline-block;
width:100%;
}
</style>
<div class=" justifyAll " style="width:800px; text-align:justify;">문자열</div>
'Language > CSS' 카테고리의 다른 글
[ CSS ] 선택자 `>` 의 의미 (0) | 2017.04.06 |
---|---|
[ CSS ] 선택자 : first-child / last-child / nth-child / nth-last-child / nth-last-child // div, ul, li 위치 순서 (0) | 2017.04.06 |
[ CSS ] background 배경 (0) | 2016.01.14 |
[ CSS ] white-Space, word-break, word-wrap, text-overflow (0) | 2016.01.03 |
[ CSS ] opacity 와 background-color:rgba 차이점 (0) | 2016.01.02 |