টেক্সট-সারিবদ্ধ বৈশিষ্ট্যটি পাঠ্যের শেষ লাইনটি সারিবদ্ধ করতে ব্যবহৃত হয়। আপনি 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>