flexbox-basic-block-horiz-001-ref.xhtml (1865B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html xmlns="http://www.w3.org/1999/xhtml"> 7 <head> 8 <title>CSS Reftest Reference</title> 9 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/> 10 <style> 11 div { height: 100px; } 12 div.flexbox { 13 border: 1px dashed blue; 14 width: 200px; 15 } 16 div.a { 17 display: inline-block; 18 background: lightgreen; 19 } 20 div.b { 21 display: inline-block; 22 background: yellow; 23 } 24 div.c { 25 display: inline-block; 26 background: orange; 27 } 28 div.auto { 29 display: inline-block; 30 background: pink; 31 } 32 div.inflex { 33 display: inline-block; 34 background: gray; 35 } 36 div.spacer { 37 height: 15px; 38 background: purple; 39 } 40 </style> 41 </head> 42 <body> 43 <div class="flexbox"> 44 <div class="a" style="width: 80px"/><div class="b" style="width: 120px"/> 45 </div> 46 <div class="flexbox"> 47 <div class="a" style="width: 62.5px"/><div class="c" style="width: 137.5px"/> 48 </div> 49 <div class="flexbox"> 50 <div class="a" style="width: 185px"/><div class="auto"> 51 <div class="spacer" style="width: 15px"/></div> 52 </div> 53 <div class="flexbox"> 54 <div class="b" style="width: 76px"/><div class="c" style="width: 124px"/> 55 </div> 56 <div class="flexbox"> 57 <div class="b" style="width: 170px"/><div class="auto"> 58 <div class="spacer" style="width: 30px"/></div> 59 </div> 60 <div class="flexbox"> 61 <div class="a" style="width: 45px"/><div class="b" style="width: 50px" 62 /><div class="inflex" style="width: 20px"/><div class="c" style="width: 85px"/> 63 </div> 64 </body> 65 </html>