- Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathoverflow-wrap-break-word-001.html
31 lines (31 loc) · 1.02 KB
/
overflow-wrap-break-word-001.html
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
<!DOCTYPE html>
<metacharset="utf-8">
<title>CSS Text Test: overflow-wrap: break-word</title>
<linkrel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<linkrel="help" href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-break-word">
<metaname="flags" content="ahem">
<linkrel="match" href="reference/overflow-wrap-break-word-001-ref.html">
<metaname="assert" content="sequences of nbsp characters that would cause overflow are expected to be broken when overflow-wrap is break-word">
<linkrel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
position: relative;
width:100px;
height:100px;
font-family: Ahem;
color: red;
overflow-wrap: break-word;
font-size:25px;
line-height:27px;
}
div::after{
content:"";
position: absolute;
top:0; left:0; bottom:0; right:0;
background: green;
}
</style>
<body>
<p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
<div> X</div>
</body>