I am working on a HTML code which has Select tag used in it. I am trying to add below given code to get the placeholder text for Select list but somehow in the generated HTML on web page I see that value="" gets replaced by value="Select"
<select id="call_quality_issue_type" required="true">
<option value="">Select</option>
</select>
As a result I am not able to use the .invalid property on select in the css to get the placeholder behavior working