Hallo,
ich gestallte derzeit meine Bilder und wollte jedes dritte Bild ansprechen, hier habe ich gelesen, dass es so geht nth-child (3n)
leider reagiert mein Browser (FF) nicht drauf. Wenn ich :last-child
verwende geht es.
Mein Code sieht derzeit so aus:
section.small-features img {
width:32%;
height:auto;
padding-right:1.3%;
margin-top:2%;
box-sizing: border-box;
-mox-box-sizing: border-box;
}
section.small-features img:nth-child (3n) {
padding-right:0%;
}
<section class="small-features">
<h3>Small Features</h3>
<img src="http://placehold.it/292x155" alt="Werbung 1">
<img src="http://placehold.it/292x155" alt="Werbung 2">
<img src="http://placehold.it/292x155" alt="Werbung 3">
<img src="http://placehold.it/292x155" alt="Werbung 4">
<img src="http://placehold.it/292x155" alt="Werbung 5">
<img src="http://placehold.it/292x155" alt="Werbung 6">
</section>
Was mache ich falsch?