Skip to content

Instantly share code, notes, and snippets.

@uafrazier
Created April 4, 2015 13:59
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 uafrazier/57a3a6aca9ae382b5c1c to your computer and use it in GitHub Desktop.
Save uafrazier/57a3a6aca9ae382b5c1c to your computer and use it in GitHub Desktop.
Centered
<!DOCTYPE html>
<html lang="en">
<head>
<title>Centered</title>
<meta charset="utf-8">
<style>
.container{
max-width: 500px;
padding: 20px;
margin: 0 auto;
}
svg{
height: 500px;
width: 500px;
}
</style>
</head>
<body>
<div class='container'>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<svg>
<rect width="500" fill="#3a96b7" height="250" y="0" x="0"></rect>
</svg>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment