Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/whitespace-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>Whitespace inside table isn't incorrectly suppressed</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="match" href="whitespace-001-ref.html">
<style>
.outer {
display: table;
width: 500px;
background: purple;
border: 1px solid green;
}
.half {
display: inline-block;
width: 50%;
background: blue;
}
.half + .half {
background: yellow;
}
</style>
<div class="outer">
<div class="half">A</div>
<!-- White space here should take up space -->
<div class="half">B</div>
</div>