divタグで画像とテキストを囲いabsoluteを使って中央に表示したいです。
画像だけにabsoluteをつけたときは画像が中央に表示されるのですがdivタグにabsoluteをつけたときは中央に表示されません。
わかる人いましたらご教授お願いしたいです。
画像にabsoluteをつけた時
import { FunctionComponent } from 'react'; const Index: FunctionComponent = () => { return ( <> <img src="profile.svg" style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, margin: 'auto', }} /> </> ); }; export default Index;
divにabsoluteをつけた時
const Index: FunctionComponent = () => { return ( <> <div style={{ position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, margin: 'auto', }} > <img src="profile.svg" /> <p>プロフィール</p> </div> </> ); }; export default Index;
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/08 14:35
退会済みユーザー
2021/03/08 14:53
2021/03/10 13:01
退会済みユーザー
2021/03/11 00:45
2021/03/11 12:15
2021/03/11 12:21
退会済みユーザー
2021/03/11 22:55