Reputation: 6411
Here is the example:
Have a print preview in chrome and firefox. Why chrome does not like the 100% height? Any hack or something?
Upvotes: 5
Views: 1961
Reputation: 4896
Webkit browsers are known to have their own little quirks which divert from the supposed way of doing things. I changed min-height:
to height:
or used ::before { content: <img src="spacer.gif" width="1" height="100%" />"; }
and it worked.
It looks like Google or Apple is trying to save people ink.
Upvotes: 2