CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

デフォルトのテキスト選択色をCSSで上書きするにはどうすればよいですか?


デフォルトのテキスト選択色をCSSで上書きするには、コードは次のとおりです。

<!DOCTYPE html>
<html>
<head>
<style>
   ::-moz-selection {
      color: rgb(255, 255, 255);
      background: rgb(118, 69, 231);
   }
   ::selection {
      color: rgb(255, 255, 255);
      background: rgb(118, 69, 231);
   }
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   p {
      font-size: 40px;
   }
</style>
</head>
<body>
<h1>Text selection color example</h1>
<h2>Select some text to see the text selection color</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iusto consequuntur fugiat 
doloremque adipisci vero iste soluta ea ut! Exercitationem rem dolore delectus modi 
repellat quo mollitia temporibus laudantium, alias itaque tempora, iure voluptatem 
non voluptas, deleniti laborum? Cum ducimus unde, vitae consequuntur nobis dignissimos 
similique officia possimus quis necessitatibus praesentium!
</p>
</body>
</html>

出力

上記のコードは次の出力を生成します-

デフォルトのテキスト選択色をCSSで上書きするにはどうすればよいですか?

一部のテキストを選択すると、下のスクリーンショットのように色が変わります

デフォルトのテキスト選択色をCSSで上書きするにはどうすればよいですか?


  1. CSSで光るテキストを作成するにはどうすればよいですか?

    CSSを使用して光るテキストを作成するためのコードは、次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style>    body {       background-color: rgb(0, 0, 0);       font-family

  2. CSSでプレースホルダー属性の色を変更するにはどうすればよいですか?

    CSSでプレースホルダー属性の色を変更するには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, s