flex
即使有很多主题问题,我也找不到答案。
我创建了一个简单的 React 应用程序 ( npx create-react-app
)。
然后我删除App.css
并将内容设置index.css
为:
html, body, #root {
height: 100%;
margin: 0;
}
接下来,在App.js
我尝试使用 flex 制作全屏元素:
import React from 'react';
function App() {
return (
<div style={{ backgroundColor: 'blue', display: "flex", flex: 1 }}>
<div style={{ display: "flex", flexDirection: "column", flex: 1 }} />
</div>
);
}
但它只是行不通。为什么 flex 元素没有拉伸?