cursor-hover-001-manual.html (747B)
1 <!DOCTYPE html> 2 <title>CSS Basic User Interface Test: cursor and :hover</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="Checks that the correct cursor is used when :hover appears at the rightmost part of the selector."> 8 <style> 9 div { 10 cursor: url("support/cursors/fail.png"), help; 11 width: 100px; 12 height: 100px; 13 border: solid blue; 14 } 15 div:hover { 16 cursor: crosshair; 17 } 18 </style> 19 <body> 20 <p>The test passes if, when moved inside the blue box, the cursor looks like a crosshair (e.g. short line segments resembling a "+" sign).</p> 21 <div></div> 22 </body>