Can I target div elements with the same class in CSS and apply unique styles to each?
Here is my HTML:
<div class="image"><br/>a</div>
<div class="image"><br/>b</div>
<div class="image"><br/>c</div>
This is my CSS:
div.image:before {
content:url(http://placehold.it/350x150);
}
//I want to display different images for each of the three divs in the HTML
Check out the JSfiddle: http://jsfiddle.net/htfhjzbo/1/