我目前正在开展一个项目,并且我坚持使用flex
http://dennisprins.nl/mvdw/index.php
所有看起来都很好,但是当你使视口变小(大约1400px)时,你会看到列布局崩溃。我怎样才能防止它们崩溃。我的css中没有媒体查询,所以它不是由于媒体查询。
包含所有框的占位符:
#overview {
-webkit-box-flex: 4;
-moz-box-flex: 4;
-webkit-flex: 4;
-ms-flex: 4;
flex: 4;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-moz-flex-wrap: wrap;
flex-wrap: wrap;
flex-flow: column wrap;
height: 100vw;
}
个别方框:
.video_grid {
background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(239,239,239,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 ); /* IE6-9 */
margin: 0.5em 0em;
width: 20em;
}
答案 0 :(得分:0)
您正在使用新的Flexbox属性混合一些旧的Flexbox属性。旧的前缀属性仍然可以被各自的浏览器识别,这会导致意外行为。
-webkit-box-flex: 4;
和类似的-box-*
属性需要删除。
Here is a quick guide to recognising the old flexbox properties:
如果您正在查看有关Flexbox和您的博客文章(或其他内容) 您正在查看
display: box;
或box-{*}
的属性 旧的2009版Flexbox。如果您正在查看有关Flexbox和您的博客文章(或其他内容) 请参阅
display: flexbox;
或flex()
功能,您正在查看 2011年尴尬的推特阶段。如果您正在查看有关Flexbox和您的博客文章(或其他内容) 查看
display: flex;
和flex-{*}
属性,您正在查看 当前(撰写本文时)规范。
Use this as a guide to all the properties you should be using.
Here is the browser compatibility for the current Flexbox recommendation。 Safari浏览器只需要-webkit-
前缀。
我注意到您在网站上进行了一些更改,此示例基于您问题中的代码段。
使用此:
#overview {
-webkit-flex: 4;
flex: 4;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column wrap;
flex-flow: column wrap;
height: 100vw;
}