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.

【Material-UI Tabs】タブのスタイルを変更する

Last updated at Posted at 2022-10-15

Tabs

MUI では Tabs コンポーネントが用意されています。

スタイル変更

通常のタブは以下のようになっています。

<Tab label="Item One" {...a11yProps(0)} />
<Tab label="Item Two" {...a11yProps(1)} />
<Tab label="Item Three" {...a11yProps(2)} />

image.png

タブの背景のスタイルを変更するには以下のように label タグにタグを埋め込みます。

<Tab label={<span className='tabLabel'>Item One</span>} {...a11yProps(0)} />
<Tab label={<span className='tabLabel'>Item Two</span>} {...a11yProps(1)} />
<Tab label={<span className='tabLabel'>Item Three</span>} {...a11yProps(2)} />

Qiita-gif用.gif

下線のスタイル変更は以下の記事が参考になりました。

完全なコードは以下に置きました。

参考記事

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?