blob: c3d66aa366dbc5105094dabd5a133476db19abd1 (
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
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reference Test</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<style>
div
{
font-family: monospace;
font-size: 60px;
line-height: 1.5em; /* computes to 90px */
}
span
{
background-color: lime;
border-bottom: black solid 3px;
border-top: black solid 3px;
}
span#first
{
border-left: black solid 3px;
}
span#third
{
border-right: black solid 3px;
}
</style>
<body lang="ja">
<div><span id="first">まだよく</span><br>
<span id="second">ています。</span><br>
<span id="third">しかし特</span></div>
|