-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathtext-transform-multiple-001.html
More file actions
26 lines (26 loc) · 1.37 KB
/
text-transform-multiple-001.html
File metadata and controls
26 lines (26 loc) · 1.37 KB
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
<!doctype html>
<html lang="ja">
<meta charset=utf-8>
<title>text-transform with multiple values</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<link rel=match href="reference/text-transform-multiple-001-ref.html">
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-text-3/#text-transform-property">
<meta name="assert" content="case transforms can be combined with full-width and/or full-size-kana transforms">
<body style="font-family:serif">
<h4>Each pair of lines should look identical:</h4>
<hr>
<div style="text-transform:uppercase full-width">HELLO Transformed world</div>
<div>HELLO TRANSFORMED WORLD</div>
<hr>
<div style="text-transform:lowercase full-width">HELLO Transformed world</div>
<div>hello transformed world</div>
<hr>
<div style="text-transform:capitalize full-width">HELLO Transformed world</div>
<div>HELLO Transformed World</div>
<hr>
<div style="text-transform:uppercase full-size-kana">Katakana: ァィゥェォヵㇰヶㇱㇲッㇳㇴ</div>
<div>KATAKANA: アイウエオカクケシスツトヌ</div>
<hr>
<div style="text-transform:full-width full-size-kana lowercase">Hiragana: ぁぃぅぇぉゕゖっゃゅょゎ</div>
<div>hiragana: あいうえおかけつやゆよわ</div>
<hr>