Thuộc tính text-align-last được sử dụng để căn chỉnh dòng cuối cùng của văn bản. Bạn có thể thử chạy đoạn mã sau để căn chỉnh dòng cuối cùng của văn bản với CSS
Ví dụ
<!DOCTYPE html> <html> <head> <style> .mydiv { text-align-last: right; } </style> </head> <body> <h1>text-align-last Property</h1> <div class = "mydiv"> <p>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.</p> </div> </body> </html>
Đầu ra