I'm trying to experiment with CSS2's ability to set a custom cursor by means of this syntax:
a.ext:hover {
cursor: url("ext.cur"), auto; }
I have created the ext.cur file in Windows cursor format I think, and put it in the root directory with the CSS file. I have a feeling that I need to either set a MIME type for .cur on the server, or I need to set the browser to recognize the .cur extension, or both. Is there a MIME type for Windows cursors? Am I asking the right question?
and
[webreview.com...]
Regrettably, the CSS2 standard does not specify the format of the file containing the cursor. Presumably, browsers will define what a cursor file looks like.
I guess the only thing to do is try a series of differing formats - and see what works.
As for the mime-type - I would guess that as the format is not specified in the specification it would not be necessary to have it in the mime.types file.
Ps. The browsers/html forum would probably have been best for this one ;)