私はセマンティックUIを使用しています(react-semantic-ui経由)。メニュー列の下部にログオン用の小さな領域が必要です。
私はこれを持っています:
これ欲しい:
を使用して上記を実行しましたが、手動スタイルなしでそれを実現するposition: absolute; bottom: 0
セマンティック ポジショニング クラスまたはコンポーネントを使用することに賭けています。react-semantic-ui
私のコンポーネントは次のとおりです。
<Menu vertical fixed={'left'} inverted>
<Menu.Item name='account' active />
<Menu.Item name='settings' active={false} />
<Menu.Menu>
<img width="50px" height="50px" style={{ backgroundColor: 'red' }} />
<Menu.Item name='logout' active={false} onClick={() => null} />
</Menu.Menu>
</Menu>