| CSS-Croco documentation | Contained in the CSS-Croco distribution. |
CSS::Croco::Statement::Media
@media statement.
@media print {
body {
background-color: black; # CSS of evil :-)
}
}
Returns list of media types which can be handled by this selector
Returns list of CSS::Croco::Statement::RuleSet in this section.
Andrey Kostenko (), <andrey@kostenko.name>
Rambler Internet Holding
07.11.2009 02:40:03 MSK
| CSS-Croco documentation | Contained in the CSS-Croco distribution. |
package CSS::Croco::Statement::Media; use utf8; use strict; use warnings; our @ISA = qw(CSS::Croco::Statement); 1; __END__
use strict; use warnings;