I have a page with the following CSS, it displays IE and FF perfectly, but on Mac in Safari and Chrome the minimum height doesnβt work, and all the content collapses when the browser page is short, rather than continuing and providing scrollbars:
<style type="text/css"> html, body { height: 100%; width: 100%; } body { height: 100%; width: 100%; background: #000000; font: 86% Arial, "Helvetica Neue", sans-serif; margin: 0; padding: 0px; color: #CCCCCC; } #website_wrapper { min-height: 850px; min-width: 1080px; height: 100%; width: 100%; } #website { height: 100%; width: 100%; background-color: #000000; vertical-align: bottom; }
Any ideas why Safari (WebKit, I think) doesn't do what it is told? Thanks in advance...
dsire source share