blob: bec8959bbee53c95a9fba8ac426103c7ea7bde42 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Arabic subtending mark, CSS counter, Noto Nastaliq Urdu</title>
<style>
@font-face {
font-family: "NotoNastaliqUrduWeb";
src: url("../fonts/NotoNastaliqUrdu-Regular.ttf") format("truetype");
}
p {
margin-right: 40px;
text-align: right;
}
ul {
font-family: "NotoNastaliqUrduWeb", sans-serif;
list-style: none;
}
ul.ref li::before {
content: "\0602";
background: blue;
color: white;
}
ul.ref.green li::before {
background: green;
color: transparent;
}
</style>
</head>
<body>
<p>The width of the green bar should <b>increase</b> half-way down:</p>
<ul class="ref" lang="ur" dir="rtl">
<li></li>
</ul>
<ul class="ref green" lang="ur" dir="rtl">
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>
|