Method: Element#remove_styles
- Defined in:
- lib/source/redshift/accessors.rb
#remove_styles(*args) ⇒ Object
call-seq:
elem.remove_styles(sym, ...) -> elem
Calls elem.remove_style(sym) once for each argument.
246 247 248 249 |
# File 'lib/source/redshift/accessors.rb', line 246 def remove_styles(*args) args.each {|x| self.remove_style(x) } return self end |