oss-wec / wisdm

Wildlife information system for data management
1 stars 1 forks source link

Data Entry: vanilla select dropdown placeholder #24

Closed kissmygritts closed 7 years ago

kissmygritts commented 7 years ago

Make sure to use the follow snippets to get the proper select UI

<select required>
  <option value="" disabled>Select Option ...</option>
</select>
select:required:invalid { color: gray; }
option[value=""][disabled] { display: none; }
option { color: black; }