这是html的简化版本
<div id="id1"></div>
<div id="id2"></div>
这是我的CSS。
#id1 {
display: -ms-flexbox;
-ms-flex-direction: row;
width: 100px;
height: 200px;
border: 1px solid;
}
#id2 {
display: -ms-flexbox;
-ms-flex-direction: column;
width: 100px;
height: 200px;
border: 1px solid;
}
两种样式之间的唯一区别是 -ms-flex-direction 是行与列。所有其他 3 个属性都相同。无论如何将两者结合起来,以免重复相同的代码?