LoginSignup
4
0

More than 1 year has passed since last update.

chakra uiのボタン内テキストが`textAlign="left"` で左寄せにならない

Last updated at Posted at 2022-02-18

さっさと結論知りたい方は解決策

ある日開発中ボタンの中のテキストを左寄せにしたかったわいはこのように書きました。

<Button textAlign="left">ほげほげ</Button>

なんということでしょう

テキストが中央寄せのままではありませんか

ここでGoogle先生にhelpを求めます。GitHubにissueがありました。

[Button] Text alignment does not work #44

解決策

<Button justifyContent="flex-start">ほげほげ</Button>

textAlignじゃなくてjustifyContentでやるそうです。

issueにも書いてはありますがどうやらButtonにinline-flexが使われているとのこと。

だからtextAlignが効かないのね。。。

些細なことですがこれみんな引っかからないの。。?

4
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
4
0