ইউনিকোড-বিডি প্রপার্টি ব্যবহার করুন সিএসএসের সাথে একাধিক ভাষা সমর্থন করার জন্য পাঠ্যটি ওভাররাইড করা উচিত কিনা তা সেট করতে
উদাহরণ
<!DOCTYPE html> <html> <head> <style> p.demo1 { direction: rtl; unicode-bidi: bidi-override; } p.demo2 { direction: rtl; unicode-bidi: isolate; } </style> </head> <body> <h1>The unicode-bidi Property</h1> <p>This is demo text.</p> <p class = "demo1">This is demo text</p> <p class = "demo2">This is demo text</p> </body> </html>