+ 1
Everytime I use form "text" I type in it, it goes white, can I prevent that?
https://code.sololearn.com/WA155Zd0pEEE/?ref=app This is the code I used when I did it. Thanks!
3 Réponses
+ 1
I do not know what you mean exactly, but maybe you can change the background color to get what you need.
You can use background css property
input {
background: red;
}
Your code has multiple mistakes:
All the content should be inside the body tag, also you should use html tag.
label for attribute takes the same value of the input id.
you should put values between quotes.
you can specify a width for the images.
+ 2
Thanks! That really helps!
+ 1
Welcome