html bdi tag


  Translation results:

abbr.both days included Starting and ending dates are included

html bdi tagsyntax

What does the bdi label mean?

Function: bidi isolation, the bdi tag is to isolate the user name from the surrounding text direction settings.

Description: The<bdi> tag allows you to set a piece of text independent of the text direction setting of its parent element. This tag is useful when posting user comments or other content that you don't have complete control over.

Note: The <bdi> tag is a new tag in HTML5.

html bdi tagexample

<!DOCTYPE HTML>
<html>
<body>

<ul>
<li>Username <bdi>Bill</bdi>:80 points</li>
<li>Username <bdi>Steve</bdi>: 78 points</li>
</ul>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance

Home

Videos

Q&A