Tagged Questions

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 ...
5
votes
4answers
406 views

CSS conditional comments for other Browsers except IE?

So far I know, the conditional comments are only supported for different Versions of IE. Likeways, can we provide conditional comments for other browsers too. If Yes, How? If no, what could be the ...
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
264 views

Is there any way to do “if IE” inside of a CSS file?

I know you can put conditional statements to load different CSS files if you are in Internet Explorer, but can you do this inside of a CSS file? I have a situation where I want the right margin to ...
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
323 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 ...
3
votes
5answers
722 views

Conditional Comments and Valid XHTML

Given the code (which looks like it should be valid): <!--[if lt IE 7]> <style type="text/css" media="screen"> <!-- div.stuff { background-image: none; } ...
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
4answers
197 views

Can we use like this <body class=“all” <!--[if IE 7]>class=“ie”<![endif]--> >

Can we use like this <body class="all" <!--[if IE 7]>class="ie"<![endif]--> >? I want to keep all CSS in one file.
2
votes
4answers
2k views

Conditional Comments Firefox

Are there specific Conditional Comments available for older versions of Firefox? (eg 3.0)
1
vote
4answers
212 views

Is there a way to introduce Internet Explorer conditional comments using JavaScript?

I have a segment of HTML code which includes a conditional comment: <!--[if IE]> <link rel="stylesheet" ...> <[endif]--> This code was tested and works correctly when included in ...
1
vote
3answers
122 views

Can I insert a browser test or conditional comments in a CSS file?

Hi I have a CSS that applies different styles according to the browser, and I want to test for the browser (if browser is not IE) in the CSS file itself (not in the HTML or PHP file). How can I do ...
1
vote
6answers
399 views

Conditional CSS file doesn't override regular CSS

I am using conditional comments to link to a css file (let's call it "IEonly.css") if the IE version is less than 8. I am trying to override some properties in the regular css file. Strangely enough, ...
1
vote
4answers
285 views

Including style sheets for different browsers without JavaScript

I have a utility that scans through my css file and embeds images as base64 to reduce the amount of requests made to the server. Unfortunatly, IE does not support this. I know how to include IE ...
1
vote
4answers
511 views

Using IE conditional comments to include CSS or JavaScript files results in more http requests

A web designer has created pages for us with IE-specific comments. Consequently, certain stylesheets are only included if the user is using a specific version of IE: <!--[if lt IE 7]> <link ...
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
69 views

IE7 thinks it is IE8?

I'm trying to use conditional comments to hack IE7 into behaving like a real browser. But the last few days, IE7 is ignoring conditionals referencing it, and responding only to conditionals targeting ...
0
votes
1answer
211 views

Explorer not loading conditional style-sheet in Wordpress site

I have a wordpress site I am using ie conditional comments to load in an ie specific stylesheet in to. For some reason the changes made aren't being reflected in IE's rendering: I have tried: ...
0
votes
1answer
342 views

Sharing LESS CSS variables with conditional comments

I have a LESS stylesheet styles.less with some variables that I need to access in my ie7.css stylesheet, which is loaded using conditional comments. Given that these are entirely separate ...
0
votes
4answers
155 views

CSS for IE 8 Only

I need to style some items for only IE 8. If I do this: <!--[if IE 8]><link rel="stylesheet" href="mystyleIE8.css" type="text/css" media="screen, projection"/><![endif]--> and ...
0
votes
3answers
3k views

target ie8 and ie9 only (not ie7)

I have an simple page, and everything works fine except ie8 and ie9 moves one of my elements 1px to the right, and its significant b/c it results in a 1px white line straight on black background. ...
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
4answers
213 views

How to link a conditional style sheet without access to the head

I am working in an enterprise CMS (Autonomy/Interwoven Teamsite) that does not give me direct access to the head of a page. I can only link style sheets and add external js files. Normally I would ...