I have about 100 stylesheets that apply the same style to one document, exactly like the zen css page, and I can list these files 1 by 1 in head but they are all in the same folder so it seems like there is an easier way. And that is...?
I'm using this with ruby, but I would rather just list a folder.
<% Highlight.all.each do |hl| %>
<%= stylesheet_link_tag "css/#{hl.name}" %>
<% end %>
looking at zen garden this is their source
Added after some answers were posted
Here is one file
<style type="text/css" title="currentStyle" media="screen">
@import "/205/205.css";</style>
Here is a second css style
<style type="text/css" title="currentStyle" media="screen">
@import "/001/001.css";
</style>
What is the @import? What does this do/mean?