テキストhogehogeをabsoluteを使って画面の中央に配置したいです。
下記のスタイルを当ててみたのですがテキストが中央になりません。
どうしたらいいでしょうか?
position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto;
const Index: FunctionComponent = () => { return ( <> <div className="bg-index height-100vh"> <p className="fs-98 inline-block">hogehoge</p> </div> </> ); }; export default Index;
// display div, span, p { &.inline-block { display: inline-block; } } p { &.fs-98 { font-size: 98px; } //backgroundColor div, img, p { &.bg-index { background-color: #c6d6ee; } } // height div { &.height-100vh { height: 100vh; } } }
回答1件
あなたの回答
tips
プレビュー