Blake Harrison
Blake Harrison

Reputation: 11

How to make a transparent textbox in html

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

Answers (2)

Blake Harrison
Blake Harrison

Reputation: 11

Here is a link to the code:https://www.twitlonger.com/show/n_1srlifs?new_post=true ()9

Upvotes: 0

LongChalk_Rotem_Meron
LongChalk_Rotem_Meron

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

Related Questions