Gizmo: Buttons Abstand vor Text

Beitrag lesen

Hi Leute,

ich habe auf einer Seite mehrere Buttons, und möchte diese jetzt mit CSS formatieren. Das hat auch geklappt ;) Was mich jedoch stört ist der unterschiedliche Abstand vor dem Text, abhängig von der Textlänge, gibt es über CSS kein Attribut damit alle Buttons den gleichen Abstand vor und nach dem Text haben?

Danke für eure Hilfe!

Gizmo!

Source:

<button type="button">Select Select Search Position</button><br>
<button type="button">Select Search Position</button><br>
<button type="button">Select Position</button><br>
<button type="button">Rolf</button><br>

CSS Source:
button {
margin-left: 0px;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
margin-right: 0px;
text-align: center;
font:bold 9pt Arial;
background-color: #eeeeee;
border-color: #cccccc;
}