यह निर्धारित करने के लिए यूनिकोड-बीडीआई प्रॉपर्टी का उपयोग करें कि सीएसएस के साथ कई भाषाओं का समर्थन करने के लिए टेक्स्ट को ओवरराइड किया जाना चाहिए या नहीं
उदाहरण
<!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>