1
1

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.

リセットCSSでチェックボックスが消えた

Last updated at Posted at 2024-04-19

目的

destyle.cssでリセットしたところ、チェックボックスが見えなくなってしまいました。解決に時間がかかったので、忘備録として残します。

結論

all: revert;を追加すると表示されました。

input {
    all: revert;
}

上記を追記すると、要素に対してカスタマイズされたり変更されたりしたすべてのスタイルが取り消されます。これによりブラウザのデフォルトスタイルに戻るため、リセットCSSで消えていたスタイリングが復活しました。

まとめ

MDNを参考にしました。

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?