Created
October 14, 2011 18:57
-
-
Save rhulse/1287972 to your computer and use it in GitHub Desktop.
css test case
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p{ font-size: 20px;} | |
@media print { | |
/* text be gone */ | |
.removeforprint{display:none} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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