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