whitespace-in-flexitem-001.html (783B)
1 <!DOCTYPE html> 2 <html> 3 <title>CSS Test: Whitespace-only nodes in Flexboxes</title> 4 <link href="support/flexbox.css" rel="stylesheet"> 5 <link rel="author" title="Google Inc." href="http://www.google.com/"> 6 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-items"> 7 <link rel="match" href="whitespace-in-flexitem-001-ref.html"> 8 <meta name="assert" content="Whitespace-only nodes in a flexbox should not 9 be rendered and not influence justify-content, even in the presence of 10 white-space: pre"> 11 <style> 12 .flexbox { white-space: pre; } 13 .a { 14 flex: none; 15 width: 30px; 16 background: salmon; 17 } 18 </style> 19 <body> 20 <div class="flexbox justify-content-space-around"> 21 <div class="a"></div> 	 22 </div> 23 24 <div class="flexbox"> 25 <b>foo</b> <b>bar</b> 26 </div>