Click here for the image, I am trying to incorporate the Bootstrap caret class into my select dropdown menu.
.select_menu{
font-size: 12px;
outline: none;
border: thin #ddd solid;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: #F7F7F7;
}
<select class="form-control select_menu" style="">
<option>Click here to select a purpose</option>
<option>Option 1</option>
<option>Options 2 </option>
</select>
Using the Bootstrap form-control, how can I include a caret in the select dropdown menu?