<!DOCTYPEhtml>
<htmldir="rtl">
<head>
<meta charset="UTF-8">
<title>dir() selector</title>
<style>
:dir(ltr) { color: blue }
:dir(rtl) { color: lime }
:dir(foopy) { color: red } div { text-align: left; }
</style>
</head>
<body>
<div>This element has default direction.</div>
<divdir="ltr">This element is ltr.</div>
<divdir="rtl">This element is rtl.</div>
<divdir="ltr">
<div>This element should inherit ltr.</div>
<divdir="ltr">This element is ltr.</div>
<divdir="rtl">This element is rtl.</div>
</div>
<divdir="rtl">
<div>This element should inherit rtl.</div>
<divdir="ltr">This element is ltr.</div>
<divdir="rtl">This element is rtl.</div>
</div>
<divdir="foopy">This element has an invalid dir attribute and
should have default direction.</div>
</body>
</html>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.