Hello Paul,
Thank you for your question. This is not possible through CSS. Please edit your HTML for doing this. This is an HTML code example
<label for="country">Choose your country:</label>
<select id="country" name="country" size="3">
<option value="us">USA</option>
<option value="uk">UK</option>
<option value="india">India</option>
</select>
You can follow this page for more information:
https://www.w3schools.com/html/html_form_elements.asp
- Best regards