How to display a list of <article> the same cross-browser?
Firefox and Opera seem to put article开发者_运维技巧s 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
or display:block
in CSS. (whichever one you want)
精彩评论