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: 2020-06-20T13:41:54+05:30

313 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements