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

CSSのカーソルプロパティ


カーソル CSSのプロパティを使用すると、ユーザーに表示するカーソルの種類を指定できます。

<html>
   <head>
   </head>
   <body>
      <p>Move the mouse over the words and see the changes in cursor:</p>
      <div style = "cursor:auto">Auto</div>
      <div style = "cursor:crosshair">Crosshair</div>
      <div style = "cursor:default">Default</div>
   </body>
</html>

  1. CSScaret-colorプロパティ

    カーソルの色を設定するには、CSSのcaret-colorプロパティを使用します。次のコードを実行して、caret-colorプロパティを実装してみてください 例 <!DOCTYPE html> <html>    <head>       <style>          .demo {             caret-color: blue;      

  2. CSS分離プロパティ

    分離プロパティは、要素が新しいスタッキングコンテンツを作成する必要があるかどうかを定義するために使用されます。構文は次のとおりです- 構文 isolation: auto|isolate|initial|inherit; 例 <!DOCTYPE html> <html> <head> <style> .demo1 {    background-color: orange; } #demo2 {    width: 300px;    height: 400px; } .demo3 {