Click to See Complete Forum and Search --> : What does it mean...?


weee
11-22-2005, 05:53 PM
<style type="text/css" media="screen">
@import "http://www.mad4milk.net/templates/style.css"/**/;
</style>

I'd like to know:

a) what the media="screen" stands for

b) What's the double ** are for (style.css"/**/;)

Thanks!

ant.eater
11-22-2005, 05:58 PM
a- i suggest you look at http://www.w3.org/TR/REC-CSS2/media.html . basically you can define different stylesheets for diferent environments. like you can disable formatting on print stylesheet, etc.

b- its just unnecessary comments tags, you can use comments in your css files like:

/* This is a comment */

they dont mean anything at the moment as there is no comment inside.


regards.