summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/floats/float-nowrap-1-notref.html
blob: 540c8048af61a2c7804d99ff14c3a2bf1f87e6ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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;
    white-space: nowrap;
    font-family: monospace;
  }
  span {
    float: right;
    width: 5ch;
    height: 5ch;
    background: blue;
  }
</style>
<div>
  <span></span>
  Some text that overflows my parent.
</div>