# File lib/ramaze/helper/xhtml.rb, line 9 def css(name, media = 'screen', options = {}) if options.empty? LINK_TAG % ["/css/#{name}.css", media] elsif options[:only].to_s.downcase == 'ie' "<!--[if IE]>#{css(name, media)}<![endif]-->" end end