3/28/2019

Make input value uppercase in CSS without affecting the placeholder

Make input value uppercase in CSS without affecting the placeholder





input { 
    text-transform: uppercase;
}
::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: none;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    text-transform: none;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    text-transform: none;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    text-transform: none;
}
::placeholder { /* Recent browsers */
    text-transform: none;
}

No comments:

Post a Comment

Disable browser right click and view source Javascript

$(document).ready(function() {     //Disable cut copy paste      $('body').bind('cut copy paste', function(e) {         e.pr...