Passe eine Auswahl an mit font-awesome

Das habe ich eigentlich:

HTML
<label class="select">
  <select name="email" id="email">
    <option>aaaa</option>
    <option>aaaa</option>
    <option>aaaa</option>
    <option>aaaa</option>
    <option>aaaa</option>
    <option>aaaa</option>
  </select>
</label>
CSS
.cforms select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;   
}


.select {
    position:relative;   
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    *display: inline;
    margin-top:40px;
}

.select:after {
  content: "\f0dc";
  font-family: FontAwesome;
  color: #000;
  padding:8px;
  position:relative;
  right:35px;
  top:0px;
  background:red;
  z-index:-1;
  width:10%;
  line-height:10%;
}
Proble

atsächlich werden in der Nähe meiner Auswahl keine Pfeile angezeig

Könnten Sie mir bitte dabei helfen?

Ich habe im Web nach Beispielen gesucht, aber ich kann nicht dafür sorgen, dass es funktioniert.

Vielen Dank

Antworten auf die Frage(2)

Ihre Antwort auf die Frage