tags:

views:

117

answers:

1

How can I make this input transparent?

<input type="text" class="foo">

I've tried this but it doesn't work.

background:transparent url(../img/transpSmall.png) repeat scroll 0 0;
+4  A: 
input[type="text"]
{
    background: transparent;
    border: none;
}

Nobody will even know it's there.

Developer Art