Reputation: 11
I am a new programmer basically a beginner, I am trying out whatever my uncle told me about HTML. I'm trying to find out how to make the first text boxes transparent.
Please help me, enter link description here
Upvotes: 0
Views: 43
Reputation: 11
Here is a link to the code:https://www.twitlonger.com/show/n_1srlifs?new_post=true ()9
Upvotes: 0
Reputation: 803
I am not sure what you mean by "transparent". but maybe something like
<form>
<input type="text" style="opacity: 0.5;" />
</form>
Anothere thing you might want is to "not display" the textbox, or make it inactive. I recommend you check out https://www.w3schools.com/css/css_image_transparency.asp
Upvotes: 1