Created
January 27, 2015 17:18
-
-
Save chrisl8/99c16e545a8d96b5784e to your computer and use it in GitHub Desktop.
Center Text and Media Query
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> | |
<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