我正在尝试修复列大小ie)col类。目前以下是以下属性:
.col {
-moz-box-flex: 1;
display: block;
flex: 1 1 0;
padding: 5px;
width: 100%;
}
我试过以下,
#id .col {
flex: none !important;
width: 45px !important;
}
这在浏览器和屏幕的纵向分辨率下完美运行。
然而,它没有固定景观分辨率的宽度。
非常感谢任何建议?