HTML Select box not rendering correct

Posted by PHPnooblet on Stack Overflow See other posts from Stack Overflow or by PHPnooblet
Published on 2013-10-30T15:41:00Z Indexed on 2013/10/30 15:54 UTC
Read the original article Hit count: 133

Filed under:
|

I don't know exactly why but my Selectbox is not rendering correctly, the underneath is missing.

.zijdev{
    margin-top:0;
    margin-bottom:0;
}

HTML:

<p class="zijdev">
    Aantal toestanden:
    <select id="aantToestanden" onchange="FilterByToestanden()">
        <option></option>
        <option>1</option>
        <option>2</option>
        <option>3</option>
        <option>4</option>
        <option>5</option>
        <option>6</option>
        <option>7</option>
        <option>8</option>
        <option>9</option>
        <option>10</option>
        <option>11</option>
        <option>12</option>
        <option>13</option>
        <option>14</option>
    </select>
</p>

enter image description here

© Stack Overflow or respective owner

Related posts about html

Related posts about css