So basically I have this markup
<div class="container">
<article>1</article>
<article>2</article>
<article>3</article>
<article>4</article>
<article>5</article>
<article>6</article>
</div>

How can I have an alternate width for the first and second div per row?
I tried article:nth-child+ diff to go to alternate divs, but I cannot find the correct stepping combination
Edit: I really can't edit the HTML structure, as this is a plugin for WordPress
source
share