File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1022,20 +1022,20 @@ Styling the Cursor: the 'cursor' property</h4>
1022
1022
Here is an example of using several cursor values.
1023
1023
<pre><code class="lang-css">
1024
1024
:link,:visited {
1025
- cursor: url(example.svg#linkcursor ),
1025
+ cursor: url(example.svg),
1026
1026
url(hyper.cur),
1027
1027
url(hyper.png) 2 3,
1028
1028
pointer
1029
1029
}
1030
1030
</code></pre>
1031
1031
1032
1032
This example sets the cursor on all hyperlinks (whether visited or not)
1033
- to an external SVG <{ cursor}> .
1034
- User agents that don't support SVG cursors would simply skip
1033
+ to an external SVG image to be used as a cursor.
1034
+ If that fails to load, user agents would simply skip
1035
1035
to the next value and attempt to use the "hyper.cur" cursor.
1036
1036
If that cursor format was also not supported,
1037
1037
the UA could attempt to use the "hyper.png" cursor with the explicit hotspot.
1038
- Finally if the UA does not support any of those image cursor formats , the UA would skip to the last value
1038
+ Finally if the UA cannot load any of those image cursors , the UA would skip to the last value
1039
1039
and render the ''pointer'' cursor.
1040
1040
</div>
1041
1041
You can’t perform that action at this time.
0 commit comments