I am using Tailwind CSS and I was wondering if there is any way to control the text styling inside a select option field? Or am I at the mercy of the browser?
This is my code and I am trying to stylize the text inside the tag.
...
@foreach($generators as $generator)
<option value="{{$generator->id}}">{{$generator->generator_name}}, <span class="text-indigo-900">{{$generator->generator_street_address_one}}</span></option>
@endforeach
...