Skip to content

Instantly share code, notes, and snippets.

@HenriqueLimas
Created June 9, 2015 13:39
Show Gist options
  • Save HenriqueLimas/7e37b56cf1a85497998c to your computer and use it in GitHub Desktop.
Save HenriqueLimas/7e37b56cf1a85497998c to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/hacudad
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
div {
background-color: grey;
}
.margin-top-100 {
margin-top: 100px;
}
.margin-right {
margin-right: 100px;
}
.margin-bottom {
margin-bottom: 10em
}
.margin-left {
margin-left: 10%;
}
</style>
</head>
<body>
<div class="margin-top-100">Margin top</div>
<div class="margin-right">Margin right</div>
<div class="margin-bottom">Margin bottom</div>
<div class="margin-left">Margin left</div>
<script id="jsbin-source-css" type="text/css">div {
background-color: grey;
}
.margin-top-100 {
margin-top: 100px;
}
.margin-right {
margin-right: 100px;
}
.margin-bottom {
margin-bottom: 10em
}
.margin-left {
margin-left: 10%;
}</script>
</body>
</html>
div {
background-color: grey;
}
.margin-top-100 {
margin-top: 100px;
}
.margin-right {
margin-right: 100px;
}
.margin-bottom {
margin-bottom: 10em
}
.margin-left {
margin-left: 10%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment