cursor-box-007-manual.html (787B)
1 <!DOCTYPE html> 2 <title>CSS Basic User Interface Test: cursor on the margin-box</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 only applied within the border-edge, which follows border-radius."> 8 <style> 9 #container { 10 position: absolute; 11 background: blue; 12 cursor: crosshair; 13 } 14 #test { 15 border: solid white 50px; 16 border-radius: 50%; 17 cursor: default; 18 } 19 </style> 20 <body> 21 <p>The test passes if, when moved over the blue areas, the cursor looks like a crosshair (e.g. short line segments resembling a "+" sign).</p> 22 <div id=container><div id=test></div></div> 23 </body>