Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was checking out some of amazons css and noticed they have html commented out a chunk of css. I know there is conditional formatting for IE with html comments but I am viewing this in chrome. so what is the purpose of it? Oh I should note that these styles are actually being applied.

  <!-- BeginNav -->

<style type="text/css">

<!--

.nav-sprite {
  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V141013396_.png);
}
.nav_pop_h {
  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-h._V155853593_.png);
}
.nav_pop_v {
  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-v._V155853593_.png);
}
.nav_ie6 .nav_pop_h {
  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-h._V155961234_.png);
}
.nav_ie6 .nav_pop_v {
  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-v._V155961234_.png);
}
.nav-ajax-loading .nav-ajax-message {
  background: center center url(http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/snake._V192571611_.gif) no-repeat;
}
-->

</style>
share|improve this question

2 Answers

up vote 9 down vote accepted

It's created by someone who thought that visitors of the site use a browser which does not recognise <style> tags.

(Ancient) browsers, which do not recognise <style> tags, will not show "weird" characters (CSS rules) because of the HTML comments.

Most browsers recognise the <style> tag, so the developer seems to use <!-- --> out of (bad) habit. It should not be used.

share|improve this answer
ahh that makes sense. Thanks. – Sackling Mar 21 '12 at 20:44
+1 This is the answer. – Mathias Bynens Mar 21 '12 at 20:45
+1 Nice sharing. – Touhid Rahman 19 hours ago
/*
.css {
    whatever code
}
*/

This is how to comment.

share|improve this answer
sorry what do you mean by blocks? – Sackling Mar 21 '12 at 20:44
I just meant comments, that's the only way to comment css. But I had meant blocks of code, I changed it now though. – Dylan Cross Mar 21 '12 at 20:44
oh right.. ya but the comments were html commented out. Rob Ws answer makes sense though – Sackling Mar 21 '12 at 20:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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