Google News
logo
CSS - Interview Questions
What is CSS unicode-bidi Property?
The unicode-bidi property is used together with the direction property to set or return whether the text should be overridden to support multiple languages in the same document.
 
CSS unicode-bidi property example :
 
div {
  direction: rtl;
  unicode-bidi: bidi-override;
}
Advertisement