- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set whether the text should be overridden to support multiple languages with CSS
Use the unicode-bdi property to set whether the text should be overridden to support multiple languages with CSS
Example
<!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>
- Related Articles
- How to set whether the text should be overridden to support multiple languages in the same document with JavaScript?
- Set whether the text of the element can be selected or not with CSS
- Set whether an animation should be played forwards or using CSS
- How to set whether the image-border should be repeated, rounded or stretched with JavaScript?
- Set the text shadow around a text with CSS
- Determine whether an element should be visible when not facing the screen with CSS
- How to set whether an element should be visible in JavaScript?
- How to set whether the text of an element can be selected or not with JavaScript?
- Set Text Alignment Working with CSS
- Set the direction of a text with CSS
- How to set the color of a text with CSS
- Set whether a punctuation character may be placed outside the line box with CSS
- Set whether the table border should be collapsed into a single border or not with JavaScript?
- Set whether or not an element should be visible while not facing the screen with JavaScript?
- Specify whether the flex items should wrap or not with CSS

Advertisements