TheConeHead
Programmer
Can I make the bg of a textfield either completely transparent or just not there at all?
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
cLFlaVA said:It takes the background color of the body, not of its parent element.
<html>
<body style="background-color: green;">
<form>
<div style="background-color: red;">
<input type="text" name="t" style="background-color: transparent;" />
</div>
</form>
</body>
</html>