background-image: none; and use -webkit-appearance: none; and -moz-appearance: none; for browser consistency.To remove the default greyish gradient styling from a select element in Webflow, you need to customize its appearance using Webflow's Designer and custom CSS.
background-image: none; to remove the gradient.-webkit-appearance: none; and -moz-appearance: none; to ensure consistency across browsers.
<style> select { background-image: none; -webkit-appearance: none; -moz-appearance: none; } </style>
To effectively remove the default gradient on a select element, utilize both Webflow's Designer and custom CSS through the Project Settings Custom Code section. By overwriting default browser appearances and removing the background image, you can achieve a consistent and styled look.