At the time my html gives this output:
But i would like to have it like this:
So how you can see i tried to add a span
where the number has its space.
I gave this span the class:
.spanContainer{
height:100%;
padding-right:15px
}
But somehow the height:100%
gives me not 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>