unicode-bdi 속성을 사용하여 CSS로 여러 언어를 지원하도록 텍스트를 재정의할지 여부를 설정합니다.
예시
<!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>