Hello, I'm wondering if there is a way of removing the border of a dropdown textbox. This is the code for a one-linebox (I made a red table around it): <html> <head> </head> <body> <table border="1" cellspacing="0" bordercolor="#FF0000" cellpadding="0"> <tr> <td> <input type="text" style="border:none;" size="25"> </td> </tr> </table> </body> </html> I want to do the same thing to a dropdown form.
I tried: <table border="1" cellspacing="0" bordercolor="#FF0000" cellpadding="0"> <tr> <td> <select size="1" style="border:none;" name="list"> <option value="apple">apple</option> <option value="bannana">bannana</option> <option value="carrot">carrot</option> <option value="grape">grape</option> </select> </td> </tr> </table> But doesn't work Someone Please Help!