为什么proty-content:在Atom中空间均匀无效?

时间:2017-11-22 04:06:13

标签: css css3 flexbox atom-editor

我正在尝试在CSS中使用对齐content: space-evenly;,但Atom将space-evenly显示为灰色,就像它无效一样。这是相关的代码:

  @media only screen and (max-width: 900px) and (min-width: 768px) {
    .plan-panel {
      -ms-justify-content: space-evenly;
      -webkit-justify-content: space-evenly;
      -moz-justify-content: space-evenly;
      justify-content: space-evenly; } }

这是我在Atom中看到的图片

enter image description here

我在MDN网络文档中找到了这个:

  

在应用长度和自动边距后完成对齐,   这意味着,如果在Flexbox布局中至少有一个灵活的   元素,flex-grow不同于0,它将没有效果   没有任何可用空间。任何人都有建议   为什么Atom不允许

但是,我没有使用flex-grow属性。

有没有人建议为什么Atom不会使用这个属性/值组合?

1 个答案:

答案 0 :(得分:0)

W3C的CSS验证器还认为justify-content: space-evenly是错误的,这可能是由于大多数浏览器的支持很少。 就是这样:“ space-evenly不是justify-content值”。