HTML <bdi>
query_builder | Christopher PisaniThe HTML element <bdi> stands for Bi-Directional Isolation. It is set up for languages of which format is right to left alignment, for example: Arabic language, rather than left to right alignment, for example: the English language. It is useful when the data is set dynamically to be positioned correctly by the browser's algorithm.
<h1>World wrestling championships</h1>
<ul>
<li><bdi class="name">Evil Steven</bdi>: 1st place</li>
<li><bdi class="name">François fatale</bdi>: 2nd place</li>
<li><span class="name">تیز سمی</span>: 3rd place</li>
<li><bdi class="name">الرجل القوي إيان</bdi>: 4th place</li>
<li><span class="name" dir="auto">تیز سمی</span>: 5th place</li>
</ul>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.