Can you change the colour of the search bars (you know the ones for passwords and usernames and contact forms) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can you change the colour of the search bars (you know the ones for passwords and usernames and contact forms)

16th Oct 2018, 10:08 PM
Plurgie
Plurgie - avatar
3 Answers
+ 1
you can do that in HTML CSS and Javascript 1. HTML (inline style): <input type='text' style='background-color: red;'> 2. CSS input{background-color: blue;} 3. Javascript document.getElementById('myInput').style.background = 'green';
23rd Oct 2018, 12:46 PM
Brandon
Brandon - avatar
0
You mean the backgrounds for the input fields?
23rd Oct 2018, 3:58 AM
Brandon
Brandon - avatar
0
Brandon Yes :D
23rd Oct 2018, 10:33 AM
Plurgie
Plurgie - avatar