vertical-centering.html (395B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 input, div { 6 height: 100px; 7 display: inline-block; 8 border: 0; 9 padding: 0; 10 11 font: 2em sans-serif; 12 13 background: transparent; 14 color: black; 15 } 16 input { 17 -moz-appearance: none; 18 } 19 div { 20 line-height: 100px; 21 text-align: center; 22 } 23 </style> 24 </head> 25 <body> 26 <input type='button' value='button' /> 27 <div>button</div> 28 </body> 29 </html>