Skip to content

Instantly share code, notes, and snippets.

@masanobuimai
Created February 10, 2009 07:28
Show Gist options
  • Save masanobuimai/61288 to your computer and use it in GitHub Desktop.
Save masanobuimai/61288 to your computer and use it in GitHub Desktop.
blueprint css
--- html ---
<link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="screen, projection">
<!--[if IE]><link rel="stylesheet" href="css/blueprint/lib/ie.css" type="text/css" media="screen, projection"><![endif]-->
--- gsp ---
<link rel="stylesheet" href="${createLinkTo(dir:'css/blueprint',
file:'screen.css')}" type="text/css" media="screen, projection">
<link rel="stylesheet" href="${createLinkTo(dir:'css/blueprint',
file:'print.css')}" type="text/css" media="print">
<!--[if IE]><link rel="stylesheet" href="${createLinkTo(dir:'css/blueprint',
file:'ie.css')}" type="text/css" media="screen, projection"><![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment