Align the last line of the text with CSS


The text-align-last property is used to align the last line of the text. You can try to run the following code to align the last line of the text with CSS

Example

Live Demo

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

Output

Updated on: 20-Jun-2020

238 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements