I have code that dynamically generates <ul>
lists each with two <li>
in them. I want those to be displayed next to each other / broken into the next line if there isn't enough room anymore.
Currently I have this
ul.pictureBlocks{
display: table-cell;
}
This displays them next to each other with 0 space between them. I tried border-spacing
and margin
or padding
but nothing worked. When I used display: table
on the ul tag it got the spacing from border-spacing
but displayed them beneath each other.