|
Inserts a stylesheet rule, comment, or import rule into the called stylesheet.
void stylesheet::push_back( const stylesheet_item& item );
A stylesheet_item
object to be inserted. As stylesheet_item
is a base class, the passed object will actually be one of the
following types, stylesheet_rule
, stylesheet_import
, or stylesheet_comment
.
Nothing.
This operation is used to insert stylesheet items into the called stylesheet. The most common stylesheet item you'll insert into a stylesheet is a stylesheet_rule
.
This operation is similar to stylesheet::insert(item), except this operation does not return an iterator to the inserted
stylesheet item.
Logarithmic