Hi at all
the last year I looked this CSS :
cursor: hand;
-moz-border-radius-topleft:18%; -moz-border-radius-topright:18%;
-moz-border-radius-bottomleft:18%;
-moz-border-radius-bottomright:18%;
Cursor work well with MSIE but not with Netscape
Moz border work with Netscape but not with MSIE
The W3.org css validator make a full error into all cases?
Why?
How is it possible to display correclty
a cursor as hand and the angles with moz border?
Regards
Steel
Neal - 26 Nov 2004 17:01 GMT
> Hi at all
> the last year I looked this CSS :
[quoted text clipped - 5 lines]
> Cursor work well with MSIE but not with Netscape
> Moz border work with Netscape but not with MSIE
That's because cursor: hand; doesn't really exist
[http://www.w3.org/TR/CSS21/ui.html#propdef-cursor] and because
-moz-whatever doesn't really exist
[http://www.w3.org/TR/CSS21/propidx.html].
> The W3.org css validator make a full error into all cases?
> Why?
> How is it possible to display correclty
> a cursor as hand and the angles with moz border?
Refer to the first link for valid values for cursor. Mozilla proprietory
CSS is not replaceable with valid CSS, however see the Custom Corners
articles at [http://www.alistapart.com]. They're at
[http://www.alistapart.com/articles/customcorners/] and
[http://www.alistapart.com/articles/customcorners2/].
Gus Richter - 26 Nov 2004 20:56 GMT
> Hi at all
> the last year I looked this CSS :
[quoted text clipped - 12 lines]
> Regards
> Steel
cursor:hand; is IE proprietory.
cursor:pointer; is W3C compliant.
Use both to support IE and W3C compliant browsers (i.e. Gecko based).
border-radius is CSS3 which is only in Draft and Mozilla has offered
-moz-border-radius as experimental in preparation for Recommendation
status, at which time Mozilla will change to using border-radius (or
whatever the Recommendation says). Current IE does not support CSS3 and
never will.

Signature
Gus
David Dorward - 26 Nov 2004 22:54 GMT
> cursor:hand; is IE proprietory.
> cursor:pointer; is W3C compliant.
> Use both to support IE and W3C compliant browsers (i.e. Gecko based).
IE supports the standard property value (except for obsolete versions with
security problems that should worry users far more then the way the cursor
looks)

Signature
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
mscir - 26 Nov 2004 22:08 GMT
<snip>
> How is it possible to display correclty
> a cursor as hand and the angles with moz border?
Take a look at these:
http://www10.brinkster.com/doctorunclear/HTMLJavascriptCSS/Cursors.html
http://www.asrvision.com/web-design-tutorials/css-tutorial-cursor.htm