Changes between Version 11 and Version 12 of Styling Form Controls


Ignore:
Timestamp:
May 10, 2011 1:49:01 AM (13 years ago)
Author:
tkent@chromium.org
Comment:

How to remove spin buttons

Legend:

Unmodified
Added
Removed
Modified
  • Styling Form Controls

    v11 v12  
    6464== <input> element ==
    6565
    66 TODO.
     66=== Removing spin buttons for <input type=number> ===
     67
     68{{{
     69input::-webkit-inner-spin-button {
     70  -webkit-appearance: none;
     71}
     72input::-webkit-outer-spin-button {
     73  -webkit-appearance: none;
     74  margin: 0;
     75}
     76}}}
    6777
    6878== Form validation message ==