blob: 8b29f31dbf8cdc31bc90c2231af8b67f02ccf0b7 (
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
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Reference File</title>
<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
display: inline-block;
width: 3ch;
height: 100px;
font: 40px/1 Ahem;
border: 1px solid black;
box-sizing: content-box;
overflow-y: hidden;
overflow-x: auto;
direction: rtl;
}
.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }
.start { text-align: start; }
.end { text-align: end; }
</style>
<div class="left">XXXX X</div>
<div class="center">XXXX X</div>
<div class="right">XXXX X</div>
<div class="start">XXXX X</div>
<div class="end">XXXX X</div>
|