Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS의 text-justify 속성

<시간/>

CSS의 text-justify 속성은 text-align 속성이 justify 값으로 설정될 때 텍스트의 justification 방식을 설정하는 데 사용됩니다. 다음은 속성 값입니다 -

text-justify: auto|inter-word|inter-character|none|initial|inherit;

예시

이제 CSS에서 text-justify 속성을 구현하는 예를 살펴보겠습니다 −

<!DOCTYPE html>
<html>
<head>
<style>
div {
   text-align: justify;
   text-justify: inter-word;
   color: white;
   background-color: gray;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<div>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </div>
</body>
</html>

출력

CSS의 text-justify 속성

이제 브라우저 크기를 조정하십시오 -

CSS의 text-justify 속성