I was wondering if it’s a good idea to use CSS display property to emulate tables for a veeeery simple forum system.
I know this wasn’t good thing to do like 2 years ago when IE and maybe others did not support display:table / table-cell etc. But I think now all browsers support it, right?
If the information being displayed on the forum is tabular, then don’t be afraid to use a table if it makes sense semantically.
For general page layout, personally I wouldn’t use it. I’d stick to the typical block-level div layouts and floats. IE7 does not support display:table and there are other caveats, such as the fact that it will expand in width based on content. For the future, I look forward to when flexbox is fully supported.
I do occasionally use display:inline-block for centering dynamic list items and the like.