1
位卡在這裏。我正在用Firefox 53測試我的網站。頁面沒有填滿整個高度。我在Chrome和Safari上進行了驗證,並且一切都很好。flex在firefox中不工作53
我通過www.caniuse.com驗證過,Firefox 53支持Flex
。頁面仍然無法正確顯示。
這裏是網站http://actionmary.com/newSite/contact.html。嘗試使用Chrome瀏覽器正確呈現的位置,並在不支持的位置使用Firefox 53。
這裏是有關CSS
html{
background-color: black;
}
body {
/*min-width:800px; suppose you want minimun width of 1000px */
/*width: auto !important; Firefox will set width as auto */
width:100%;
margin:0;
font-family: 'futura-pt', sans-serif;
font-style: normal;
font-weight: 400;
display: flex;
flex-flow: column;
background-repeat:no-repeat;
background-size:cover;
}
.content {
width: 100%;
flex: 1 1 auto;
overflow: hidden;
}