I am using this code structure:
.pull-left {
float: left;
}
.align_center {
text-align: center;
}
.width_33 {
width: 33%;
}
.cleaner {
clear: both;
}
<ol class="stats">
<li>
<div class="pull-left width_33">
Pete
</div>
<div class="pull-left align_center width_33">
1 client
</div>
<div class="pull-left align_right width_33">
<span title="Commissions">
$28.61
</span>
</div>
<div class="cleaner"></div>
</li>
</ol>
Why the "1." is not on the beginning of the line (that's where I would like to get it)?
Thank you in advance.