At the time when my html gives this output:

But I would like to have it like this:

So, as you can see, I tried to add spanwhere the number has its space. I gave this range to the class:
.spanContainer{
height:100%;
padding-right:15px
}
But for some reason it height:100%does not give me the desired effect! What should I do? thanks
http://jsfiddle.net/52VtD/3398/
<ul class="list-group">
<li class="list-group-item">
<span class="spanContainer">
<a class="text-success">02401</a>
</span>
H2-Atemtest
</li>
<li class="list-group-item">
<span class="spanContainer">
<a class="text-success">03241</a>
</span>
Computergestützte Auswertung eines kontinuierlich aufgezeichneten Langzeit-EKG von mindestens 18 Stunden Dauer
</li>
</ul>
source
share