Click to See Complete Forum and Search --> : Transparent BGround


Rakshi
07-12-2003, 04:35 PM
Can someone please tell me how I can Make a text area that has a transparent BG? If there is a code can you please post it?:confused:

Mr J
07-12-2003, 04:54 PM
Try this

<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
<style>
.trans{background-color:transparent}

</style>
</HEAD>
<BODY bgcolor="red">
This is some dummy text<BR>
This is some dummy text<BR>
This is some dummy text<BR>
This is some dummy text<BR>
This is some dummy text<BR>
<input type="text" value="Hello" class="trans" STYLE="position:absolute;left:0;top:30">
</BODY>
</HTML>