PDA

View Full Version : Text box borders


Zapcat
09-26-2002, 12:46 PM
Just out of curiosity, is it possible to remove the border around a text box? If it is, how do you do it?

Vladdy
09-26-2002, 12:49 PM
use style with the input tag

trojan
09-26-2002, 01:24 PM
Hi Vladdy,

i'm a useless programmer, could u show me how to do that text field border please

Trojan

Catman
09-26-2002, 01:32 PM
It's a CSS issue -- do something like this in the head portion of the file:


<style>
input.text {
border : none;
}
</style>


Then for the input element:


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


Note that defining a style class isn't absolutely necessary, but I find it useful since most often there's more than one type of input I'm working with.