Apply CSS to last element of specific class
Last element using .class
is not possible. In your case you can use nth-last-child
property.
.blog-posts div:nth-last-child(2) {
background: #ff0000;
}
DEMO
Last element using .class
is not possible. In your case you can use nth-last-child
property.
.blog-posts div:nth-last-child(2) {
background: #ff0000;
}
DEMO