1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Headerを中央、右ぞろえにする方法

Posted at

Headerの中央にタイトル、右端に各機能など配置したいときありますよね。
ちょうどこんな感じです。(個人製作アプリですみません。。。)

music.png

私は、基本flexboxを使用しているのですが、flexboxの機能だけではできない、実装です。

そういった場合、relativeとabsoluteを使うとうまく実装できます。

  <div className="relative flex justify-center">
    <h1>中央のタイトル</h1>
     <div className=" absolute right-0 ">
      <div className="flex">
         <div>Japan</div>
         <div>USA</div>
        <div>China</div>
      </div>
    </div>
  </div>

是非お試しあれ。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?