This problem is very common yet you not created any div for the element
select.
There are two ways you can do
- Add div to your element:-
<html>
<head>
<style>
select.dropdown {
border: 1px solid black;
}
</style>
<body>
<div>
<select class="dropdown">
<option selected value="1">Option 1</option>
</select>
</div>
</body>
</html>
2) You can also use outline propety (no need of div) :-
<html>
<head>
<style>
select.dropdown {
outline: 1px solid black;
}
</style>
<body>
<select class="dropdown">
<option selected value="1">Option 1</option>
</select>
</body>
</html>
I guess that should help you.