Skip to content

Instantly share code, notes, and snippets.

@abhitalks
Created January 12, 2016 11:50
Show Gist options
  • Save abhitalks/b9184044cd92ca1871a8 to your computer and use it in GitHub Desktop.
Save abhitalks/b9184044cd92ca1871a8 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
.wrapper {
width: 240px; height: 240px;
border: 1px solid #d33;
}
.left-section {
width: 120px; height: 120px;
background-color: #33d;
}
</style>
</head>
<body>
<script type='text/javascript'>
var div1 = document.createElement('div'),
div2 = document.createElement('div')
;
div1.className = 'wrapper';
div2.className = 'left-section';
div1.appendChild(div2);
document.body.appendChild(div1);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment