Forum Moderators: not2easy
and I think, any confirmation?, that the percentage of IE users with JS turned off may be very low, it tends to be web "savvy" people who turn JS off.. and they probably use other browsers anyway ;)..
the whatever:hover [xs4all.nl]behaviour (different person) on its own is cool, even if just to play with.. which I have been already ;)
Suzy
A JS-requiring fix is, as SuzyUK notes, better than none at all, though I would note that in many cases, people who browse with Javascript turned off have no choice-- their employer or other institution through whom they access the Internet has disabled it.
I guess I wonder if I would use this on a clients site. I can't see why not, as long as nothing 'crucial' is involved...
<!--[if gte IE 5.5]>
<link rel="stylesheet" src="ie7-html.css" type="text/css"/>
<![endif]-->
It would really be great to be able to use all those selectors, but really it just amounts to the same thing as giving the called elements a class for ie. What I would really love to see is a fix for explorer's various float problems and an implentation of all the display properties. But that would probably take another 30k.
Adam
He did point out that this is alpha code - I would take that as a very loud "CAVEAT EMPTOR!" I don't have a problem trying it out since I have a test-box where it doesn't matter what smashes. Others might like to beware for sure.
<!--[if gte IE 5.5]>
<link rel="stylesheet" src="ie7-html.css" type="text/css"/>
<![endif]-->
I believe you have to change the 5.5 to 5.5000
[source]http://www.javascriptkit.com/howto/cc2.shtml
Notice how we input the version 5.5- as 5.5000. This four digit definition is called version vector, and is required whenever the version to detect is a subset of an integer.
I believe you have to change the 5.5 to 5.5000
No, you don't. In fact, you shouldn't.
5.5 will match 5.5000, 5.5123, 5.5206, and 5.5999... whereas 5.5000 will only match 5.5000.
The release build for IE5.0 is 5.0002 on Win2k...
The release build for IE5.5 is 5.5000...
But what about SP releases? If you want to target all IE5, you should only specify 5 as the version number in your conditional comment. If you want to target all 5.5, you should only specify 5.5 as the version number.
For those that are still confused about conditional comments: [msdn.microsoft.com...]