Is it possible to create grid layouts with display: table
without nested divs?
<div id="container">
<div id="article1">
<div id="article2">
<div id="article3">
<div id="article4">
<div id="article5">
<div id="article6">
</div>
The result should be for example a 3x2 table. If I apply display: table-cell
to the article divs I get them all in a row. I assume there is no possibility to create a new row after 3 divs without nesting them in HTML?