Last active
August 29, 2015 14:07
-
-
Save cheng470/f4cf61c8510fb95f6ed9 to your computer and use it in GitHub Desktop.
页面居中
This file contains 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 charset="UTF-8"> | |
<title>Document</title> | |
<style> | |
body { | |
text-align: center; | |
} | |
.wrapper { | |
width: 920px; | |
margin: 0 auto; | |
text-align: left; | |
border: 1px solid; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="header"> | |
<h1>Header</h1> | |
</div> | |
<div class="content"> | |
<p>content</p> | |
</div> | |
<div class="footer"> | |
<p>footer</p> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment