+ 1
Custom select menu without JS
I want to custom select menu without using JS. Is it possible without JS and if it's how and what I can change?
3 Answers
+ 1
Select menu have a native api in html without JS or CSS, what you mean by custom select menu I dont understand.
<select>
<option> Name 1 </option>
<option> Name 2 </option>
<option> Name 3 </option>
<option> Name 4 </option>
</select>
+ 1
africana I want to change the font family, background, text-align, border, add animation for hovering on opinion tag....
+ 1
You need css primarily to do that
Select{
Font-family: Georgia;
Text-align: center;
Border: 1px solid black;
}
Select : hover {
/* Add the effects you
Want here it will change. */
}
The options above are just for test, put the real values you need....