【发布时间】:2016-01-18 01:50:21
【问题描述】:
我正在尝试在屏幕底部固定选项卡组件。我试过了
<Tabs
contentContainerStyle={{position: "fixed"}}
>
</Tabs>
甚至style={{position:"fixed"}}
如何修复底部的选项卡?
【问题讨论】:
-
我猜你需要 {{position:fixed;bottom:0px;}}
-
对不起,我想澄清一下:position:fixed 不能修复标签。
-
你试过在 div 中包装标签吗?
<div style={{ position: fixed; bottom: 0 }}><Tabs /></div>
标签: reactjs material-ui