summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/floats/float-nowrap-4-ref2.html
blob: f86afdbce800094ec5907273df236780022a2ba7 (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
<!doctype html>
<title>CSS Test Reference</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://www.mozilla.org" title="Mozilla">
<style>
  div {
    width: 10ch;
    font-family: monospace;
  }
  .float {
    float: right;
    width: 5ch;
    height: 5ch;
    background: blue;
  }
  .nowrap {
    white-space: nowrap;
  }
</style>
<div>
  Some
  <br>
  <span class="float"></span>
  <span class="nowrap">
    text that overflows my parent.
  </span>
</div>