Created
January 12, 2016 11:50
-
-
Save abhitalks/b9184044cd92ca1871a8 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> | |
<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