View Full Version : icky textarea borders


puppiepower
05-05-2003, 05:19 AM
okay, i made a transparent textarea, but i cant find a way to get rid of that icky grey border around it.. heres the code..


<DIV id="about" style="position: absolute; top: 370px; left: 320px;" align=left> <textarea name="about" "style="border style:none" rows="10" cols="31" style="background:none">TEXT TEXT TEXT</textarea> </DIV>

could someone please tell me how to get a transparent border/no border at all?

MaGiCSuN
05-05-2003, 11:16 AM
the reason why your border didn't disspeared was because you had an " in front of style which doesn't belong there and you had forgot the - between border and style it should be border-style not border style.

here's the right code:

<DIV id="about" style="position: absolute; top: 370px; left: 320px;" align=left> <textarea name="about" style="border-style:none" rows="10" cols="31" style="background:none">TEXT TEXT TEXT</textarea> </DIV>

Love,
Mirna