Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/whitespace-in-flexitem-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>CSS Test: Whitespace-only nodes in Flexboxes</title>
<link href="support/flexbox.css" rel="stylesheet">
<link rel="match" href="whitespace-in-flexitem-001-ref.html">
<meta name="assert" content="Whitespace-only nodes in a flexbox should not
be rendered and not influence justify-content, even in the presence of
white-space: pre">
<style>
.flexbox { white-space: pre; }
.a {
flex: none;
width: 30px;
background: salmon;
}
</style>
<body>
<div class="flexbox justify-content-space-around">
<div class="a"></div> 	
</div>
<div class="flexbox">
<b>foo</b> <b>bar</b>
</div>