Method: Sass::Tree::Node#css

Defined in:
lib/sass/tree/node.rb

#cssString

Computes the CSS corresponding to this static CSS tree.

Returns:

  • (String)

    The resulting CSS

See Also:



165
166
167
# File 'lib/sass/tree/node.rb', line 165

def css
  Sass::Tree::Visitors::ToCss.new.visit(self)
end