vote up 0 vote down star
1

Hi,

Is there such a thing as conditional comments for Chrome?

I have a page that renders differently in chrome compared to firefox.

Thanks

flag

38% accept rate
If you can specify your issue then it could be more helpful. – adamantium Aug 18 at 7:11
Belongs on doctype... – Graham Lee Aug 18 at 7:12

5 Answers

vote up 3 vote down check
<!--[if IE 8]><div id="bodyContainer" class="IE8"><![endif]-->
<!--[if !IE]>--><div id="bodyContainer" class="W3C"><!--<![endif]-->
<script type="text/javascript"> 
    if (navigator.userAgent.toLowerCase().match('chrome') && document.getElementById('bodyContainer'))
    	document.getElementById('bodyContainer').className = document.getElementById('bodyContainer').className + " chrome";
</script>

Then you use CSS to tweak your styles specifically for Chrome.

link|flag
How silly of me, I never considered JS :-) – Sir Psycho Aug 19 at 0:03
vote up 0 vote down

You can target WebKit based browsers using this in your CSS

@media screen and (-webkit-min-device-pixel-ratio:0) { 

Body {}

}

Perhaps this will help?

link|flag
vote up 0 vote down

The conditional operation will work because other browsers will parse the If IE8 block as an HTML comment, but not the !IE block because the inside of it is wrapped in --> and

Therefore, for all non-IE browsers the body class will indeed equal W3C.

This is all by the way, though, because the IE comment block is not needed to identify the browser specifically as chrome - the JS block on its own will do that, provided the user has JS turned on of course.

link|flag
Users with JS turned off are too few to care about :-) – Sir Psycho Aug 19 at 0:04
vote up 2 vote down

Both HTML conditional comments and Javascript conditional compilation directives are only supported by Internet Explorer 4-8 to the best of my knowledge.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.