Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

จัดแนวบรรทัดสุดท้ายของข้อความด้วย CSS


คุณสมบัติ text-align-last ใช้เพื่อจัดแนวบรรทัดสุดท้ายของข้อความ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อจัดแนวบรรทัดสุดท้ายของข้อความด้วย CSS

ตัวอย่าง

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

ผลลัพธ์

จัดแนวบรรทัดสุดท้ายของข้อความด้วย CSS