Method: Sass::Tree::Node#css
- Defined in:
- lib/sass/tree/node.rb
#css ⇒ String
Computes the CSS corresponding to this static CSS tree.
165 166 167 |
# File 'lib/sass/tree/node.rb', line 165
def css
Sass::Tree::Visitors::ToCss.new.visit(self)
end
|