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

MUIのSelectコンポーネントで青色の枠線を消す方法

Last updated at Posted at 2024-12-15

はじめに

今回は、MUIのSelectコンポーネントで青色の枠線を消す方法を紹介します。

消すために割と時間を使ってしまったので、被害者がこれ以上出ないように...

スクリーンショット 2024-12-15 20.58.08.png

解決法

sxに以下の記述をする

<Select
  sx={{
    // 青い枠線を消す
    '& > fieldset': {
      border: 'none !important',
    },
  }}
/>

fieldsetで制御されていることに気づくのが時間かかりました...

ちなみに

fieldsetというのは、labelタグのようにフォームを管理するタグだそうです。

labelと違う点は、複数フォームの管理に使われることです。

<form>
  <fieldset>
    <legend>好きな猫を選んでください🐈</legend>

    <input type="radio" id="kraken" name="cats" value="S" />
    <label for="Scottish Fold">スコティッシュフォールド</label><br />

    <input type="radio" id="sasquatch" name="cats" value="A" />
    <label for="american shorthair">アメリカンショートヘア</label><br />

    <input type="radio" id="mothman" name="cats" value="M" />
    <label for="munchkin">マンチカン</label>
  </fieldset>
</form>

MUIのSelectは、このタグを利用してフォームの管理をしているということですね!

参考

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