HTML5 Tutorial - bdo Tag in html Example in Hindi


HTML bdo Tag "bidirectional override" के लिए है जिसका उपयोग current/default text direction को overrides करने के लिए किया जाता है। यह Tag अपने भीतर सामग्री की direction को browser पर left से right या right से left render करने के लिए set करता है।


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML 5 Document</title>
<base href="https://myprojecthd.in/" target="_blank">
</head>
<body>
<bdo dir="rtl">
This text will go right-to-left.
</bdo>
</body>
</html>
view raw bdotag.html hosted with ❤ by GitHub