Skip to content

Instantly share code, notes, and snippets.

@leohxj
Last active December 20, 2015 19:19
Show Gist options
  • Save leohxj/6182643 to your computer and use it in GitHub Desktop.
Save leohxj/6182643 to your computer and use it in GitHub Desktop.
body撑满屏幕
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{
margin:0;
padding: 0;
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
background: #ccc;
}
</style>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment