티스토리 뷰
text-align: left; 왼쪽 정렬
text-align: rightt; 오른쪽 정렬
text-align: center; 가운데 정렬
text-align: justify; 양쪽 정렬
https://spacemonkey925.tistory.com/100
[ 양쪽 정렬이 진행이 안될때 ]
<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 |