Floatumgebung mit last-of-type

by Jens Grochtdreis

HTML

<ul>
    <li><img src="http://lorempixel.com/100/100" alt="" /></li>
    <li><img src="http://placekitten.com/100/100" alt="" /></li>
    <li><img src="http://lorempixel.com/100/100" alt="" /></li>
</ul>

CSS

ul{float: left;width: 320px;background-color: #f00; padding: 10px 0;}
li{float: left;width: 100px;margin-right: 10px;}
li:last-of-type {margin-right: 0;}