A Pen by Andrew Kirchmyer on CodePen.
This file contains hidden or 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
| <div class="rhombus center" > | |
| <p class="center">Hello</p> | |
| </div> |
This file contains hidden or 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
| <div class="mydiv"></div> |
This file contains hidden or 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
| <div class="glass-pane"> | |
| "Don't sweat the petty things and don't pet the sweaty things." | |
| -George Carlin | |
| </div> |
A Pen by Andrew Kirchmyer on CodePen.
A Pen by Andrew Kirchmyer on CodePen.
A Pen by Andrew Kirchmyer on CodePen.
A Pen by Andrew Kirchmyer on CodePen.
This file contains hidden or 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
| var outerValue = 'outer'; | |
| var later; | |
| function outerFunction() { | |
| var innerValue = 'inner'; | |
| function innerFunction(param) { | |
| console.log(outerValue); | |
| console.log(innerValue); | |
| console.log(param); | |
| console.log(laterValue); |
from "Secrets of a JavaScript Ninja"
A Pen by Andrew Kirchmyer on CodePen.
NewerOlder