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
function new_function( var1 = "", var2 = null ){ | |
// do something | |
} | |
new_function( "a", "b" ); | |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
font-family: copperplate; | |
background-color: #D6AA39} | |
h1 {color: #8C6D8D} |
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
/* | |
CSS-Tricks Example | |
by Chris Coyier | |
http://css-tricks.com | |
*/ | |
* { margin: 0; padding: 0; } | |
body { font: 14px Georgia, serif; } | |
h1 { width: 660px; margin: 0 auto; padding: 20px 0; color: #222; } |
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
/** | |
* Kvick and Dirty | |
*/ | |
background: #020; | |
background: linear-gradient(12deg, #020, green); | |
min-height:100%; |
NewerOlder