Is it possible to remove the border of a dropdown form?

Discussion in 'HTML & Website Design' started by Jaguarjace, Oct 5, 2008.

  1. #1
    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.
     
    Jaguarjace, Oct 5, 2008 IP
  2. Jaguarjace

    Jaguarjace Guest

    Messages:
    52
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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!
     
    Jaguarjace, Oct 5, 2008 IP
  3. Jaguarjace

    Jaguarjace Guest

    Messages:
    52
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I don't think its possible :(
     
    Jaguarjace, Oct 7, 2008 IP
  4. webdesigners

    webdesigners Banned

    Messages:
    534
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #4
    Yea, it is possible. try to make the border="0" instead of 1
     
    webdesigners, Oct 7, 2008 IP