it seem that
display: block
cause less reflow then
display: table
also is there any css property that could be set to make sur that changing one dom element won’t affect the layout of some other element and thus causing extra repaint or reflow.
Adding
position:absoluteto the element would take the element completely out of the flow of the page, therefore causing no reflow for other elements.