Flex命令和:第一个孩子

时间:2016-08-03 14:55:45

标签: css flexbox

我有一些基本的桌面样式。

.block {
  display: flex;
    > * {
      &:first-child { margin-top: 0; }
      &:last-child { margin-bottom: 0; }
    }
}

当我在移动设备中时,flex order属性会更改子项顺序(显然)
所以显示的第一个孩子实际上并不是dom中的第一个孩子。
基本上,显示的第一个孩子有:last-child个样式,显示的最后一个孩子有:first-child个。

我想知道,有没有相当于:first-child:last-child与flex order属性兼容?

0 个答案:

没有答案