For mcmwhfy, the answer above does not solve the problem with pure CSS, but is the only SELECT solution in Chrome.
The following will be in the input style / textarea / select in each browser, if possible, with the exception of SELECT in Chrome. But unfortunately, images are the only way to do it now in Chrome.
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f8ff', endColorstr='#ffffff',GradientType=0 ); background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #F4F8FF 100%); /* IE10+ */ background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(102,204,255,0.75), rgba(0,0,0,0)); background: -webkit-gradient(linear, left top, left 20, from(#FFFFFF), color-stop(4%, #f4f8ff), to(#FFFFFF)); background: -moz-linear-gradient(top, #FFFFFF, #f4f8ff 1px, #FFFFFF 25px);
Buddyz
source share