flex-vertical-align-effect.html (406B)
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 7 <style type="text/css"> 8 input{ 9 margin:0; 10 padding:0; 11 vertical-align:top; 12 float: left; 13 } 14 </style> 15 </head> 16 <body> 17 18 <div id="container"> 19 <input type="text" value="input1" /> 20 <input type="radio" /> 21 </div> 22 </body> 23 </html>