【发布时间】:2021-10-06 04:28:47
【问题描述】:
我不能很好地使用 flex-box。
这是当前状态:
这是我的代码:
Lobby.js(容器)
const TopBlock = styled.div`
display: flex;
`;
const Lobby = () => {
return (
<>
<TopBlock>
<CreateRoom />
<Profile />
</TopBlock>
</>
)
}
Profile.js
const ProfileBlock = styled.div`
`;
const Profile = () => {
return (
<ProfileBlock>
<p>hello0</p>
<p>hello1</p>
<p>hello2</p>
</ProfileBlock>
)
}
我该怎么办? ..T_T
【问题讨论】:
-
Profile.js有哪些款式? -
还没有样式
标签: css reactjs flexbox styled-components