I need 1 or 2 things if you guru's could help out.
1st) I need to know if there is a way to get around having to have a height or width with a IE Filter. It seems it won't work unless it has one or the other.
2nd) Is there any CSS hack that will only let IE see the CSS, I know of some hacks that will exlude other browsers, but off the top of my head, I can't think of one that will only keep IE, although I think there is one that will exclude mozilla based and opera browsers, but I can't remember it, any help?
Greatly appreciate your help.
- Asher#2: You can use IE conditional comments. All browsers other than IE view these as regular comments. Something like this, maybe:
<!--[if IE]>
<style type="text/css">
/*style for IE*/
</style>
<![endif]-->
<!-- m --><a class="postlink" href="http://www.javascriptkit.com/howto/cc.shtmlThat'll">http://www.javascriptkit.com/howto/cc.shtmlThat'll</a><!-- m --> work. Thanks.
1st) I need to know if there is a way to get around having to have a height or width with a IE Filter. It seems it won't work unless it has one or the other.
2nd) Is there any CSS hack that will only let IE see the CSS, I know of some hacks that will exlude other browsers, but off the top of my head, I can't think of one that will only keep IE, although I think there is one that will exclude mozilla based and opera browsers, but I can't remember it, any help?
Greatly appreciate your help.
- Asher#2: You can use IE conditional comments. All browsers other than IE view these as regular comments. Something like this, maybe:
<!--[if IE]>
<style type="text/css">
/*style for IE*/
</style>
<![endif]-->
<!-- m --><a class="postlink" href="http://www.javascriptkit.com/howto/cc.shtmlThat'll">http://www.javascriptkit.com/howto/cc.shtmlThat'll</a><!-- m --> work. Thanks.