HTML - <bdi> Tag



Description

The HTML <bdi> tag is Bi-directional isolation element which is used to embed text with a different direction from another text.

Example

<!DOCTYPE html>
<html>

   <head>
      <title>HTML bdi Tag</title>
   </head>

   <body>
      <p>Tutorialspoint list of tutorials:</p>
      
      <ul>
         <li>Web: <bdi>HTML</bdi></li>
         <li>Programming: <bdi>Java</bdi></li>
         <li>Scripting: <bdi>VBScript</bdi></li>
         <li>Mobile: <bdi>Android</bdi></li>
      </ul>
   </body>

</html>

This will produce the following result −

Global Attributes

This tag supports all the global attributes described in HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in HTML Events Reference

Browser Support

Chrome Firefox IE Opera Safari Android
Yes Yes Not Supported Not Supported Not Supported Not Supported
html_tags_reference.htm
Advertisements