# File lib/ramaze/helper/xhtml.rb, line 9
      def css(name, media = 'screen', options = {})
        if options.empty?
          if name =~ /^http/ # consider it external full url
            LINK_TAG % [name, media]
          else
            LINK_TAG % ["#{Ramaze.options.prefix.chomp("/")}/css/#{name}.css", media]
          end
        elsif options[:only].to_s.downcase == 'ie'
          "<!--[if IE]>#{css(name, media)}<![endif]-->"
        end
      end