Custom select menu without JS | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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?

11th Jan 2019, 11:17 PM
Cлaвeн Ђервида
Cлaвeн Ђервида - avatar
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>
12th Jan 2019, 9:58 AM
africana
africana - avatar
+ 1
africana I want to change the font family, background, text-align, border, add animation for hovering on opinion tag....
12th Jan 2019, 12:40 PM
Cлaвeн Ђервида
Cлaвeн Ђервида - avatar
+ 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....
12th Jan 2019, 12:44 PM
africana
africana - avatar