bdi Element
Description
The bdi
element marks text that is isolated from other
content for the purposes of text directionality.
You use this element when displaying content for which there is no directionality information available. The browser determines the directionality automatically.
Example
The following code deals with Text Without the bdi
Element.
<!DOCTYPE HTML>
<html>
<body>
<p>
<bdi>abcd</bdi>
</p><!--from www . j av a2s .c o m-->
</body>
</html>