Push down nth image

thedudleys

New Member
I have 4 image elements, and I would like to push down all elements after element nr. 2So instead of getting:\[code\]| | | |\[/code\]I would get:\[code\]| || |\[/code\]I'm using \[code\]img:nth-child(2)\[/code\] to position the element, and it does work. But I have problem pushing the following elements down. I thought \[code\]clear: right\[/code\] would do this, but it doesn't work.Here is my fiddle:http://jsfiddle.net/zXteb/
 
Back
Top