I have a simple down drop list which displays five different games consoles. Is it possible to centre align the text? I've tried center aligning it, however, this doesn't help.
html
<select class="consoles">
<option value="0">Xbox One</option>
<option value="1">Playstation 4</option>
<option value="2">PC</option>
<option value="3">Nintendo Wii</option>
</select>
css
.consoles {
width: 120px;
height: 37px;
text-align:center
}