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

CSScaret-colorプロパティ


カーソルの色を設定するには、CSSのcaret-colorプロパティを使用します。次のコードを実行して、caret-colorプロパティを実装してみてください

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            caret-color: blue;
         }
      </style>
   </head>
   <body>
      <p>Place the mouse cursor below to see a blue color cursor</p>
      <input class = "demo" value="Blue Cursor"><br><br>
   </body>
</html>

  1. CSS空白プロパティ

    空白プロパティを使用して、要素内の空白を操作します: 例 <!DOCTYPE html> <html>    <head>       <style>          p.demo1 {             white-space: normal;          }         &nbs

  2. CSSの書き込みモードプロパティ

    書き込みモードプロパティは、テキストの行を水平方向に配置するか垂直方向に配置するかを設定するために使用されます。プロパティ値は-です writing-mode: horizontal-tb|vertical-rl|vertical-lr; 例 <!DOCTYPE html> <html> <head> <style> p {    writing-mode: vertical-rl; } </style> </head> <body> <h1>Demo Heading</h