• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Schaltfläche gleiche grösse

Cheis

Neues Mitglied
Hier ist was ich gemacht habe:
<p><a href="/" target="_blank" class="btn btn-info">WHEN</a><select><option value="15.09.2015">15.09.2015</option><option value="15.10.2015">15.10.2015</option><option value="15.11.2015">15.11.2015</option></select></p>
<p><a href="/" target="_blank" class="btn btn-info">WHERE</a></p>
<select><option value="IBIZA">IBIZA</option><option value="SALENTO">SALENTO</option><option value="SICILY">SICILY</option></select
habe es versucht mit def. von width="80"height="20" aber nicht
Was mache ich falsch und wie kann ich die Schaltflächen nebeneinander positionieren?

Danke :)
 

Anhänge

  • schaltflaechen.png
    schaltflaechen.png
    5,3 KB · Aufrufe: 4
Werbung:
Werbung:
wäre CSS so richtig?:
<style>
.when select {
border: 0 !important;
webkit-appearance: none;
moz-appearance: none;
background: #0088cc url(img/select-arrow.png) no-repeat 90% center;
width: 100px;
text-indent: 0.01px;
text-overflow: "";
color: ##49afcd;
border-radius: 15px;
padding: 5px;
}
</style>
 
und HTML so:
<form class="when">
<select>
<option>15.09.2015</option>
<option>15.10.2015 </option>
<option>15.11.2015</option>
</select>
 
Werbung:
Zurück
Oben