Firefox and Opera seem to put articles after each other while Chrome gives a line break after each one. Which one is correct and how would you get them display the preferred style the same cross browser?
<html>
<body>
<article>
Item 1
</article>
<article>
Item 2
</article>
<article>
Item 3
</article>
<article>
Item 4
</article>
</body>
</html>
Opera 11.01
Chrome 9.0
You should set either
display: inline
ordisplay:block
in CSS. (whichever one you want)