CSS -Setbreite einer Spannweite
span { /* Normally a span has no width! */
display: inline-block; /* This fixes it. */
width: 50px; /* Whatever width you like. */
}
/* Does not work in FF2 and below. */
Yaakov Belch