|
NAMECSS::DOM::Rule::Page - CSS @page rule class for CSS::DOM VERSIONVersion 0.17 SYNOPSIS use CSS::DOM;
my $page_rule = CSS::DOM->parse(
'@page :first { stuff: other stuff }'
)->cssRules->[0];
$page_rule->selectorText; # '@page :first'
$page_rule->style; # a CSS::DOM::Style object
$page_rule->style->stuff; # 'other stuff'
DESCRIPTIONThis module implements CSS @page rules for CSS::DOM. It inherits from CSS::DOM::Rule and implements the CSSPageRule DOM interface. METHODS
SEE ALSOCSS::DOM CSS::DOM::Style CSS::DOM::Rule
|