mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
27 lines
597 B
HTML
27 lines
597 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>dir() selector</title>
|
|
<style>
|
|
:not(:-moz-dir(rtl)) + div { color: blue }
|
|
div { color: lime; text-align: left; }
|
|
</style>
|
|
<script type="text/javascript">
|
|
function switchDir()
|
|
{
|
|
theDiv = document.getElementById("d");
|
|
if (theDiv.dir == "ltr") {
|
|
theDiv.dir = "rtl";
|
|
} else if (theDiv.dir == "rtl") {
|
|
theDiv.dir = "ltr";
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="switchDir()">
|
|
<div id="d" dir="ltr">This element is rtl.</div>
|
|
<div>This element has default direction.</div>
|
|
</body>
|
|
</html>
|