Skip to content

Instantly share code, notes, and snippets.

@msteckyefantis
Last active March 27, 2018 15:07
Show Gist options
  • Save msteckyefantis/1c5040b059fbc061ff0c6970cfbaf033 to your computer and use it in GitHub Desktop.
Save msteckyefantis/1c5040b059fbc061ff0c6970cfbaf033 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>50 Div Tricks</title>
<style>
body,html {
margin: 0;
padding: 0;
}
#megaDiv {
width: 100px;
height: 100px;
background-color: green;
}
</style>
</head>
<body>
<div id='megaDiv' />
</body>
</html>
<html>
<head>
<title>50 Div Tricks</title>
<style>
body,html {
margin: 0;
padding: 0;
}
#megaDiv {
width: 100%;
height: 100px;
background-color: green;
}
</style>
</head>
<body>
<div id='megaDiv' />
</body>
</html>
@Developerayo
Copy link

cool

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment