cursor-border-area.html (625B)
1 <!DOCTYPE html> 2 <title>CSS Basic User Interface Test: cursor on the border 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 border area."> 8 <style> 9 div { 10 border: solid 50px blue; 11 cursor: crosshair; 12 } 13 </style> 14 <body> 15 <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> 16 <div></div> 17 </body>