

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS unicode-bidi Property
Use the Unicode-bidi 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 Questions & Answers
- Unicode Property Escapes JavaScript Regular Expressions
- CSS outline property
- CSS height property
- CSS width property
- CSS padding property
- CSS pitch property
- Orphans CSS Property
- CSS azimuth Property
- CSS stress property
- CSS background property
- CSS pause property
- CSS volume Property
- CSS speak property
- CSS elevation Property
- CSS cue property
Advertisements