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

CSS text-align-last คุณสมบัติ


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

ตัวอย่าง

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