&(可检查的)托管应用.Here's a Stackblitz that replicates the problem (be sure to open in Chrome 80+): editable & (inspectable) hosted app.这里还有一些截图:Chrome Devtools - 网格大纲Firefox Devtools - 网格大纲Chrome Devtools - 非均匀计算的网格列宽Chrome Devtools - 网格大纲Chrome Devtools - 统一计算的网格列宽推荐答案你的问题和问题你差不多链接1(我也回答过)它与chrome如何处理1fr有关,它等于minmax(auto,1fr).You issue is almost similar to the question you linked1 (where I also answered) and it has to do with how chrome is dealing with 1fr which is equal to minmax(auto,1fr).使用 minmax(0,1fr) 似乎解决了这个问题,但我需要深入挖掘才能找出原因.这要么是一个错误,要么他们改变了 minmax() 的计算方式.Using minmax(0,1fr) seems to fix the issue but I need to dig more in order to identify why. It's either a bug or they changed the way minmax() is calculated.将更新错误报告或详细说明1:这个问题涉及行配置,我们需要做相反的事情.使用 1fr (minmax(auto,1fr)) 而不是 minmax(0,1fr)1: That questions deals with a row configuration where we need to do the opposite. Use 1fr (minmax(auto,1fr)) instead of minmax(0,1fr) 这篇关于Chrome 80 中的网格模板列计算不一致的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-22 01:39