CSS::Croco::Statement::RuleSet - List of rule objects


CSS-Croco documentation Contained in the CSS-Croco distribution.

Index


Code Index:

NAME

Top

CSS::Croco::Statement::RuleSet - List of rule objects

DESCRIPTION

Top

RuleSet is:

    selector, selector1 {
        property: value;
        ...
    }

METHODS

Top

declarations

Returns list of declarations

parse_declaration

Args: $string

Parses single declaration

selectors

Returns list of CSS Selectors

BUGS

Top

NOTES

Top

AUTHOR

Top

Andrey Kostenko (), <andrey@kostenko.name>

COMPANY

Top

Rambler Internet Holding

CREATED

Top

02.11.2009 02:15:11 MSK


CSS-Croco documentation Contained in the CSS-Croco distribution.

package CSS::Croco::Statement::RuleSet;
@ISA = qw(CSS::Croco::Statement);
use utf8;
use strict;
use warnings;

1;