Computer >> Computer tutorials >  >> Programming >> CSS

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

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

Align the last line of the text with CSS