I am css beginner and I have got a little problem How change background color of option within select element while mouse hover, I mean the blue background and white text color, without change the white background color and other options that the mouse dosen't hover on its?
option:hover {
background-color: #ffb81f;
}
<div class="role">
<label for="role">أي الخيارات التالية تمثل وضعك الحالي :</label><br>
<select id="role" required>
<option value="">اختر واحدة</option>
<option value="طالب">طالب</option>
<option value="موظف بدوام كامل">موظف بدوام كامل</option>
<option value="">متفرغ للتعلم</option>
<option value="لا أفضل الإجابة">لا أفضل الإجابة</option>
<option value="غير ذلك">غير ذلك</option>
</select>
</div>