summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/background-clip/clip-text-flex-ref.html
blob: 0bcbc0bc13f6bb8a13adc256a728a7860f3e2d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.clip {
  font-size: 80px;
  color: green;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
</style>
<div class="clip flex">flex</div>
<div class="clip inline-flex">inline-flex</div>