blob: 9d1ca10ca2ee80cc2e3896fc1835eff43038dcb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bidi text in inline with background image</title>
<style type="text/css">
body {
font-size: 0;
}
span {
padding: 29px 0;
line-height: 58px;
}
.bgleft {
background: url(mozilla-banner.gif) no-repeat;
}
.bgright {
background: url(mozilla-banner.gif) no-repeat right top;
}
i {
padding: 30px;
}
</style>
</head>
<body>
<p dir="rtl"><span class="bgleft"><i>‏</i><br><i>‎</i><i>‏</i><i>‎</i></span><i>‎</i></p>
<p dir="rtl"><span class="bgright"><i>‏</i><br><i>‎</i><i>‏</i><i>‎</i></span><i>‎</i></p>
<p dir="ltr"><span class="bgleft"><i>‎</i><br><i>‎</i><i>‏</i><i dir="ltr">‎</i></span><i>‏</i></p>
<p dir="ltr"><span class="bgright"><i>‎</i><br><i>‎</i><i>‏</i><i dir="ltr">‎</i></span><i>‏</i></p>
</body>
</html>
|