Created
December 18, 2012 08:46
-
-
Save qianduan/4326240 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> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>只是文字的水平和垂直居中</title> | |
<style> | |
html,body{width: 100%;height: 100%;margin: 0;padding: 0} | |
body{background-color: green;display: table;} | |
p{line-height: 1.6;text-align: center;padding: 0;margin: 0;display: table-cell;vertical-align: middle;} | |
</style> | |
</head> | |
<body> | |
<p>wording</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment