I create a tile based game and use block rendering to update a large list of fragments. I am trying to do this in the easiest way, so I tried to work with default HTML layouts. Right now I am creating “inline blocks” by omitting spaces between elements to avoid horizontal spaces between them, but when the blocks overflow and create a new line there is some vertical marginality in which I do not know how to remove.
An example to make this clearer:
http://jsfiddle.net/mLa93/13/
(Basically, I just need to remove the gap between the lines of the block, while preserving the simple markup.)
source
share