Skip to content

Instantly share code, notes, and snippets.

@rhulse
Created October 14, 2011 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhulse/1287972 to your computer and use it in GitHub Desktop.
Save rhulse/1287972 to your computer and use it in GitHub Desktop.
css test case
p{ font-size: 20px;}
@media print {
/* text be gone */
.removeforprint{display:none}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test case</title>
<link href="testcase.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>A Heading</h1>
<p class="removeforprint">This is some text to style</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment