473,624 Members | 2,642 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

The cursor anf the angles of cells

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
Jul 21 '05 #1
6 2606
On Fri, 26 Nov 2004 16:26:39 GMT, Steel <NO****@hotmail .com> wrote:
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
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/].

Jul 21 '05 #2
Steel wrote:
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


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.

--
Gus
Jul 21 '05 #3
Steel wrote:
<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/doctorunc...S/Cursors.html
http://www.asrvision.com/web-design-...ial-cursor.htm
Jul 21 '05 #4
Gus Richter wrote:
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)

--
David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Jul 21 '05 #5
*Gus Richter* <gu********@net scape.net>:

Current IE does not support CSS3 and never will.


Actually IE*6 supports some properties that (later?) made it into a W3C
draft for a CSS3 module, i.e. Text <http://www.w3.org/TR/css3-text/>.
AFAIK some Asian web-designers are in fact using these today.

--
"If you never fall, you dance in constant fear of falling."
Suzanne Farrell
Jul 21 '05 #6
Christoph Paeper wrote:
*Gus Richter* <gu********@net scape.net>:

Current IE does not support CSS3 and never will.

Actually IE 6 supports some properties that (later?) made it into a W3C
draft for a CSS3 module, i.e. Text <http://www.w3.org/TR/css3-text/>.
AFAIK some Asian web-designers are in fact using these today.


This may very well be the case. No disputing that MS came up with some
things first (some good and some bad). In fact regarding the "hand" I
believe that MS introduced it first, but W3C (of which MS is a member)
introduced it as "pointer".

The point I was bringing forth was that since there will be no further
improvements to todays IE (as opposed to Longhorn's IE or whatever it
will be called), there will be no support for border-radius or any item
which is not presently supported.

--
Gus
Jul 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
4572
by: Csaba2000 | last post by:
The following code has me so confused, I don't even know the right questions to ask. Opera 7.01 and IE 5.5 both exhibit behaviours I don't understand while NN 6.1 seems to ignore me altogether. The upshot: .style.cursor seems to be ignored under certain circumstances. Let's take something that's mostly repeatable and maybe someone can explain to me what's happening. In Opera 7.01
9
8233
by: Gary Holt | last post by:
We have a problem demonstrated by the following HTML document. To see the problem type HV in the first field then use the mouse cursor to click into the Staff code input box. You will find that the cursor has ended up in the prompt field rather than the input. I think it is due the table dynamically resizing when the description is added to the second cell, so where your cursor clicked no longer contains the location of the input box. ...
16
1951
by: Niels Jensen | last post by:
I have been developing a little project which draw's a hexgrid on a panel within a form similar to this - it:s used as a client from a e-mail based strategy game: ____ ____ / \ / \ / (0,0) \____/ (2,0) \____/ \ / \ / \ \____/(1,1) \____/ (3,1) \_ / \ / \ / (0,1) \____/ (2,1) \____/
1
2640
by: Stephen Takacs | last post by:
I've been reading lots of rounded corners table tutorials lately, because I'm a Perl guru, not an HTML guru. :-) So far all of the examples I've seen have edges with narrow angles, which fit easily into a single corner cell. Simple stuff. Piece of cake. By now I can do them in my sleep while juggling hippopotamuses and hanging upside down. But this one is different. In this particular case, it takes three corner edges to hold each...
1
11955
by: jobs | last post by:
I'm trying to understand this and don't get it... I found some code that looks like it's going to work if I can make sense of how to position the div. The code displays a div with some data when I mouse over an element (A column in an ASP.NET Gridview, but I suppose that's not important) Everything works great, except I can't seem to position the div where I want given scrolling.
0
841
by: renusingh20 | last post by:
hi.. i am making a window application..with C#.NET..and i hv a prob in my module...while working on a DataGrid.. actually. i hv a grid ..in which 1st col. shows serial no..and so the no of rows depends on the no in 1st col. but the no of total col will depend on the max no of values among all rows.. now...i do not want the movement of user in the unwanted cell of any row unnecessarily....... means..if no of coll are 8...and no of rows...
2
4352
by: Jerry Manner | last post by:
HI I am looking for the right css to create a rectangle with round angles. In that rectangle will be different text on my webpage. So the width can be different for eacht label. How should my css look like to create this effect? I have tried with a table and table cells but untill now it doesn't look anything like I want to.
2
2354
by: Dom | last post by:
I need to change the cursor when the mouse is hovering over certain cells in a DataViewGrid, as a visual aid for the user. But the cursor is not something found in the Cursors Class. I have a .ICO file. What is the most efficient way of doing this? Is a way to build the cursor resource right into the executable, so that it travels with the EXE? That seems to be the way other programs do it. For example, I have a resource viewer that...
3
5248
by: afrogazer | last post by:
I am creating a wind rose using a polar bar plot bu the points do not seem to align to the correct angles. Here is the sample code I am using. I can't seem to see anything in the API on how to set the angles. Any ideas anybody? Thanks. from pylab import *
0
8685
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8341
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7174
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6112
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5570
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4184
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2612
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1796
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1489
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.