webkit-display-values-1-ref.html (612B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html> 7 <head> 8 <title> 9 CSS Reference 10 </title> 11 <style> 12 div { 13 border: 1px solid black; 14 width: 50px; 15 height: 20px; 16 justify-content: center; 17 } 18 </style> 19 </head> 20 <body> 21 <div style="display: flex;">a</div> 22 <div style="display: flex;">b</div> 23 <div style="display: flex;">c</div> 24 <br> 25 <div style="display: inline-flex;">d</div> 26 <div style="display: inline-flex;">e</div> 27 <div style="display: inline-flex;">f</div> 28 </body> 29 </html>