I kinda figured that might be the case .. a proprietary thing for MS only.
Just an fyi, you can shorten your CSS file by learning some CSS shorthand. Those font rules can be summed up in 1 line like this:
font: 14px bold Arial;
You should also put in more tthat 1 font :
font: 14px bold Arial, Helvetica, Verdana, sans-serif;
That will cover all bases and the 'sans-serif' is a default for just about anyone, always include it.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
There are actually some cool filters that I wish would find there way out of the Microsoft proprietary stuff and into the css specs. One I think would be particularly useful is the filter than can apply a gradient instead of having to use an image.
Here are a few different filters from the msdn site. You'll obviously need to view things in IE if you want to see some of the examples in action. Some of what's there can be done with standards compliant css, but there are a few filters like the gradient I would like to see implemented in the standards.
__________________ l Search Engine Friendly Web Design | Please login or register to view this content. Registration is FREE
l Tips On Marketing, SEO, Design, and Development | Please login or register to view this content. Registration is FREE
hmm, thats pretty cool. I havent even heard of css filters before today. I hope that "they" can get some standards going soon so we can use them in all browsers someday!
They all work in IE and some of the filters like the alpha one for opacity do have css equivalents. Sometimes you'll need to use both the css and the filter to get things to work across browsers.
__________________ l Search Engine Friendly Web Design | Please login or register to view this content. Registration is FREE
l Tips On Marketing, SEO, Design, and Development | Please login or register to view this content. Registration is FREE