time-small-width-ref.html (341B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 input { 6 width: 10px; 7 height: 1.5em; 8 outline: 1px dotted black; 9 background: white; 10 /* Disable baseline alignment, so that our y-position isn't influenced by the 11 * choice of font inside of input: */ 12 vertical-align: top; 13 } 14 </style> 15 </head> 16 <body> 17 <input> 18 </body> 19 </html>