Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<div class="archyvas-virselis">
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>
    <a href="#"><img src="./img/virselis-archyvas.jpg" alt=""/></a>

</div>

For example in 1 line are 4 elements, and I want that 4th element of line margin-right will be 0, it is possible to write that style ?

share|improve this question

3 Answers

up vote 1 down vote accepted
  .archyvas-virselis a:nth-child(4n+4){ margin-right: 0}

for every 4 elements

or

 .archyvas-virselis a:nth-child(4){ margin-right: 0 }

for just the 4 element

keep in mind its only work for ie9 and above

share|improve this answer
Yep I nedd for every 4th element – Mantas Kudeikis Jan 31 at 10:29
It will not work in old browsers(IE6 to IE8) – Harish Anchu Feb 2 at 10:48

i would go with

a:nth-child(4n+4){
    margin-right:0;
}

on the basis that you might want the 4th to be margin right, but there might be more than 4 elements in a row (as per your HTML)

this is a css3 selector and may not work for older browsers (IE)

share|improve this answer

Jquery is the only way to do it without modifying the HTML. You can achieve it like this:

    jQuery('.archyvas-virselis a:nth-child(4n)').addClass('fourth-item');

and define styles for class fourth-item

but assuming you can do that, the main option is just to give it a class="fourth-item", then do:

a.fourth-item { /* ... */ }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.