Computer >> Máy Tính >  >> Lập trình >> CSS

Thuộc tính text-justify trong CSS

Thuộc tính text-justify trong CSS được sử dụng để đặt phương thức justify của văn bản khi thuộc tính text-align được đặt thành giá trị justify. Sau đây là các giá trị thuộc tính -

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

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ để triển khai thuộc tính text-justify trong CSS -

<!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>

Đầu ra

Thuộc tính text-justify trong CSS

Bây giờ, hãy thay đổi kích thước trình duyệt -

Thuộc tính text-justify trong CSS