2015-02-11 12:43:03 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>vertical bidi</title>
|
|
|
|
<style type="text/css">
|
|
|
|
div {
|
|
|
|
writing-mode: vertical-rl;
|
2015-02-20 12:52:16 +03:00
|
|
|
text-orientation: sideways-right;
|
|
|
|
height: 200px;
|
2015-02-11 12:43:03 +03:00
|
|
|
width: 100px;
|
|
|
|
text-align: start;
|
|
|
|
background: yellow;
|
2015-02-20 12:52:16 +03:00
|
|
|
line-height: 1.5em;
|
2015-02-11 12:43:03 +03:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2015-02-20 12:52:16 +03:00
|
|
|
<div dir="rtl">abc א foo ב <b>bar ג</b> xyz</div>
|
2015-02-11 12:43:03 +03:00
|
|
|
</body>
|
|
|
|
</html>
|