Tagged Questions

16
votes
2answers
5k views

Will IE9 support conditional comments?

I thought I remembered reading somewhere that IE9 would not be supporting them, but now after searching I can't find any indication that this is true. Is anyone aware of a definitive statement, ...
6
votes
3answers
604 views

How to write conditional comment for non IE browsers?

I don't want to use a couple of javascript plugins for IE 6/7. But I want to use them for all other browsers. How can I do it? Is there any way I can do it?
5
votes
2answers
99 views

why are conditional comments implemented in IE? [closed]

less of how & more of a why question here...I tried searching around some & couldn't quite find the answer I was looking for. I'm curious why conditional comments exist within IE? did ...
3
votes
3answers
137 views

Conditional Comments within CSS

I am currently developing a theme for a homepage but ran into a few problems. For whatever reason I have no access to editing the html code itself, and I need to write custom .css for IE (specifically ...
3
votes
4answers
157 views

When would <!--[if !IE]> be used?

I was pondering this question last night while debugging some things in IE7, when I typed in <!--[if IE7]>... it occured to me that I've seen <!--[if !IE]>. Now what get me is that as far ...
3
votes
3answers
908 views

Why isn't my IE6 Conditional stylesheet not working?

This is driving me nuts. I'm trying to use a conditional IE6 stylesheet. I posted this test page here. Here is the code I placed in my head tags: <!--[if IE 6]> <link rel="stylesheet" ...
3
votes
1answer
324 views

Do IE Conditional Comments slow down page load?

I've been having the "CSS hacks" vs "Conditional Comments" argument enough times lately that I thought I'd throw this question out to the Stack Overflow community. <!--[if IE]> <link ...
2
votes
2answers
72 views

how can [if IE 6] can be taken by IE7?

I am adding an aditional stylesheet for IE6 <!--[if IE 6]> <link href="../../nCss/comunHome_ie6.css" rel="stylesheet" type="text/css" /> <![endif]--> but is affecting to ...
2
votes
2answers
162 views

Why do these Conditional Comments tell me IE8 is IE7?

Why using this HTML page on Internet Explorer 8: <p> <!--[if IE]> According to the conditional comment this is Internet Explorer<br /><! [endif]--> <!--[if IE 5]> ...
2
votes
4answers
2k views

Conditional Comments Firefox

Are there specific Conditional Comments available for older versions of Firefox? (eg 3.0)
1
vote
1answer
24 views

What would make Internet Explorer NOT process conditional comments properly?

I'm writing JSP pages and using Tomcat, and it needs to work for IE 7 in addition to Firefox and Chrome (client needs). In my program, I include both pieces of code. It works properly for non-IE ...
1
vote
1answer
66 views

IE Conditional Comment Issue

On a new application we've made a decision to no longer support IE6, so we have a conditional comment to load a script that says as much. Code is: <!--[if lt IE 7]> <h2 ...
1
vote
3answers
116 views

Targets for conditional comments in html?

I know you can target browsers with conditional comments, as explained here in MSDN. But I just saw one that looked like this <!--[if gte mso 9]> What does this check for and what (other than ...
1
vote
1answer
308 views

Why is Stylesheet loaded when Contional Comment states it should be ignored?

I thought conditional comments would instruct the browser to ignore the content if the condition is not met?! For example I want to only include a stylesheet if IE6 is the browser. The following in ...
0
votes
2answers
38 views

(!IE) Problems with Blocking Code from IE

I have (once again) been enhancing my template for a school site. However, I have run into another problem. I have noticed that the navigation bar does not render properly in any Internet Explorer ...
0
votes
2answers
48 views

Do conditional comments only work for stylesheets?

Do conditional comments only work for CSS styles and stylesheet links, or can they be applied to all HTML/JS. I'm asking because I'd like to display a specific message if the user is using a browser ...
0
votes
2answers
2k views

IE9 Rounded Corners & CSS Background Gradients Living Together?

I came across a weird thing in IE9 trying to get a background gradient to display. Basically I'm applying multiple classes to a container object. <div class="gradient corners"></div> ...
0
votes
0answers
87 views

How to get around Drupal comment doubling bug? (e.g. for IE specific stuff)

I've discovered an annoying bug in Drupal. If an HTML comment is entered in the content of a page, for some strange reason Drupal puts it in twice. For example, <!-- test --> becomes ...
0
votes
2answers
162 views

How do you get “IE 6 conditional comments” working?

i have this markup which works fine: <div id="hd1" class="header headerNotIE6"> i am now trying to put a ie6 specific workaround so i am trying to only have this div if the browser is not ...
0
votes
3answers
143 views

HTML / Conditional Comments - Do conditional comments behave as expected across browsers?

Do conditional comments behave as expected across browsers? Can they cause rendering bugs or other issues? Are there any errors in the formatting/syntax of this CC? <object ...
-1
votes
3answers
209 views

can i include ie conditional comments inside an opening tag

basically I'd like to know if this code is ok <body id="some_id" <!--[if lt IE 7 ]>class="ie6"<![endif]--> > </body>