blob: 564f136e3b4c33b9e024915f32899274d784e7cf (
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
51
52
53
54
|
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<style>
html {
font-family: monospace;
font-size: 16px;
}
div {
margin: 1em;
}
a {
outline: 1px solid red;
background: #dddddd;
}
.test1 {
width: 19ch;
}
.test2 {
width: 20ch;
}
.test3 {
width: 21ch;
}
.test4 {
width: 22ch;
}
.test5 {
width: 23ch;
}
.test6 {
width: 24ch;
}
</style>
<div class="test1">
Is the red outline correct on <a href=".">this<br>link</a>⁠...?
</div>
<div class="test2">
Is the red outline correct on <a href=".">this<br>link</a>⁠...?
</div>
<div class="test3">
Is the red outline correct on <a href=".">this<br>link</a>⁠...?
</div>
<div class="test4">
Is the red outline correct on <a href=".">this<br>link</a>⁠...?
</div>
<div class="test5">
Is the red outline correct on <a href=".">this<br>link</a>⁠...?
</div>
<div class="test6">
Is the red outline correct on <a href=".">this link</a>⁠...?
</div>
|