html - How to apply box-shadow on select tag on UIWebView? -
i want apply shadow-box on select tag on uiwebview. it's not attached shadow-box on uiwebview, though use shadow-box tag.
if use '-webkit-appearance: none' css, can attached shadow-box on uiwebview. shape of select tag removed.
in image, left on uiwebview , right on chrome. both use shadow-box css below. when don't use '-webkit-appearance:none', shadow-box not shown on uiwebview.
-webkit-box-shadow: 0px 0px 3px 3px rgba(255,0,0,0.8); -moz-box-shadow: 0px 0px 3px 3px rgba(255,0,0,0.8); box-shadow: 0px 0px 3px 3px rgba(255,0,0,0.8);
i want use select tag chrome on uiwebview.
Comments
Post a Comment