flex-vertical-align-effect.html (667B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: 'display' property set to 'flex'</title> 5 <link rel="author" title="Hua Zhao" href="mailto:zhaohua.design@163.com" /> 6 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-property"> 7 <link rel="match" href="reference/flex-vertical-align-effect.html"> 8 <meta name="assert" content="vertical-align property has no effect" /> 9 10 <style type="text/css"> 11 #container { 12 display:flex; 13 align-items:flex-start; 14 } 15 input{ 16 margin:0;padding:0;vertical-align:middle; 17 } 18 </style> 19 </head> 20 <body> 21 22 <div id="container"> 23 <input type="text" value="input1" /> 24 <input type="radio" /> 25 26 </div> 27 </body> 28 </html>