2012-04-16 21:01:29 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>dir() selector</title>
|
|
|
|
<style>
|
2012-09-29 13:41:10 -07:00
|
|
|
:not(:-moz-dir(rtl)) + div { color: blue }
|
2012-04-16 21:01:29 -07:00
|
|
|
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>
|