html select option text color

Solutions on MaxInterview for html select option text color by the best coders in the world

showing results for - "html select option text color"
Erik
31 Nov 2020
1<style>
2  #selector{
3  color:red;
4	}
5</style>
6
7<select name="" id="selector">
8  <option value="1">1</option>
9  <option value="2">2</option>
10  <option value="3">3</option>
11</select>