summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/reference/text-decoration-subelements-005-ref.html
blob: 77f385a3c7b03ed5b8b47bc0f04541723d815ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<style>
div {
  text-decoration: underline;
}
span {
  text-decoration: underline;
  display: block;
}
</style>
<div>
  From EXAMPLE 1 of the spec.
</div>
<span>
  This text is also underlined,
  as it is in an in-flow block to which the underline is propagated.
</span>