Select dropdown

by danield770

HTML

<div>
<select>
    <option selected>Select</option>
    <option>This is an option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
    <option>This is another Option</option>
</select>
</div>

CSS

div
{
    max-height: 100px;
}
select
{
    max-height: 100px;
    overfolw-y: auto;
}