Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストボックスで強調表示されている選択範囲の色を変更する方法はありますか?CSSを使用してそれを行うことはできますか?
選択したテキスト (::selection) の CSS3 プロパティがありますが、Chrome または Safari の input または textarea タグ内では機能しません。Firefox でのみ動作します。
textarea::selection および ::-moz-selection を参照してください
はい、はい。
CSS疑似クラスを使用できます:focus
:focus
例:
input:focus{ border: 5px solid blue; background: green; }
ワーキングデモ