cursor-content-area-manual.html (679B)
1 <!DOCTYPE html> 2 <title>CSS Basic User Interface Test: cursor on the content area</title> 3 <link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net"> 4 <link rel="help" href="http://www.w3.org/TR/css3-ui/#cursor"> 5 <meta name="flags" content="interact"> 6 <meta charset="UTF-8"> 7 <meta name="assert" content="The cursor property is applied over the content area, as it is strictly inside the border edge."> 8 <style> 9 div { 10 background: blue; 11 height: 100px; 12 cursor: crosshair; 13 } 14 </style> 15 <body> 16 <p>The test passes if, when moved inside the blue rectangle, the cursor looks like a crosshair (e.g. short line segments resembling a "+" sign).</p> 17 <div></div> 18 </body>