重现问题:
export default function Home() {
return (
<div className="flex-row justify-items-center">
<h1>MINIMAL LOL</h1>
</div>
);
}
在 Firefox 上检查时,flex-row 类呈灰色,悬停时显示工具提示“flex-direction 对此元素没有影响,因为它不是 Flex 容器”。
justify-items-center 也变灰并显示工具提示“justify-items 对此元素没有影响,因为它不是网格容器”。
为什么 Firefox 和 Chrome 在渲染此类时存在差异?
<div className="flex flex-row justify-center items-center">Your text</div>