Firefox将-moz-前缀添加到min-content,max-content。然后无法正确呈现它

时间:2018-03-19 17:24:29

标签: css firefox grid css-grid developer-tools

只是我,但在使用Firefox Developer Edition 60.0b4(64位)时,我使用开发人员工具遇到了奇怪的行为。不向代码添加前缀Firefox正在添加它们本身。然后将它们读作错误的行,从而无法正确显示。 (Chrome开发工具不会遇到此问题,并按预期显示网格布局)

这是我VS Studio 2017的代码

    z-index: 2;
    grid-template-rows: 43vh min-content min-content max-content;
    grid-template-areas: "SectionSpacer" "SectionHeading" "SectionGalleryList" "SectionText";
    overflow-y: scroll;

这是firefox读取的内容

z-index: 2;
-ms-grid-rows: 43vh -moz-min-content min-content -moz-max-content;
grid-template-rows: 43vh -moz-min-content min-content -moz-max-content;
grid-template-areas: "SectionSpacer" "SectionHeading" "SectionGalleryList" "SectionText";
overflow-y: scroll;

使用的是Firefox Developer Edition 60.0b4(64位)

enter image description here

0 个答案:

没有答案