0
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】Edgeのパスワード表示ボタンを非表示にする方法

Last updated at Posted at 2024-01-11

はじめに

Edgeで<input type="password">にパスワードを入力した際に以下のようにパスワード表示ボタンが表示されます。
68747470733a2f2f71696974612d696d6167652d73746f72652e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f302f323334323434332f62653132323965382d376566382d376639642d323837362d3963333965386333386339332e706e67のコピー.png

非表示にする方法

以下のようにCSSを記述することでパスワード表示ボタンを非表示にできます。

::-ms-reveal {
  display: none;
}

TailwindCSSを使用している場合には以下のようになります。

<input type="password" class="[&::-ms-reveal]:hidden" />

スクリーンショット 2024-01-11 23.01.34.png

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