Skip to content

Instantly share code, notes, and snippets.

@chrisl8
Created January 27, 2015 17:18
Show Gist options
  • Save chrisl8/99c16e545a8d96b5784e to your computer and use it in GitHub Desktop.
Save chrisl8/99c16e545a8d96b5784e to your computer and use it in GitHub Desktop.
Center Text and Media Query
<!DOCTYPE html>
<html lang="en">
<head>
<title>Test Junk</title>
<meta charset="utf-8">
<style>
@media (max-width: 800px) {
#hideme {
display: none;
}
}
</style>
</head>
<body>
<div style="text-align: center;">
<p style="margin: 1em auto;">Some more <span id="hideme">Hidden Text! </span>inline content...</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment