Does anyone know I can make min-height work with the latest browsers? I am using CSS tables and it seems to ignore min-height.
Solution for Firefox
Add height to unlock setting the min-height
div { display: table; width: 100%; height: 0; min-height: 100px; }
The number in height can be any other real value less or equal to min-height for making it work as expected.