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

Thuộc tính CSS text-align-last


Thuộc tính text-align đượ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 mã sau để triển khai thuộc tính text-align-last trong CSS3 -

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>