blob: 63470a1d29a114e825b01bffd1f54ab8832c9fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<html>
<head>
<title>block-as-inline</title>
<style>
.inline {display: inline;}
</style>
</head>
<body>
<div>
I like:
<div class="inline">A</div>
<div class="inline" dir="rtl">א</div>
<div class="inline" dir="rtl">ב</div>
(3 things total).
</div>
</body>
</html>
|