+ 1
How can I create customised keyboard , alert box, radio button and checkbox?
Should I use CSS or JS?
3 Answers
+ 2
thanks
+ 1
Hi Bithi D,
I think there are a lot of questions here.
If you have the component, chances are you can customize it (at least its appearance) with CSS.
- I'm not sure what you had in mind for the keyboard
- An alert box uses JS, but you can create modals (which are approximately similar in concept) with just CSS
- Customizing radio buttons and checkboxes is a funky CSS process that involves setting the opacity of the underlying element to zero so that the user can't see it but you don't lose its functionality. (It's like a cloaking device.)
I hope this helps! :)