View this code at http://livecoding.io/4083919
Created
November 16, 2012 03:59
-
-
Save rdhyee/4083919 to your computer and use it in GitHub Desktop.
created by http://livecoding.io/3411676
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
{ | |
"libraries": [], | |
"mode": "html", | |
"layout": "sketchpad mode" | |
} |
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
#red { | |
width: 100px; | |
height: 100px; | |
background: #FF0000; | |
} | |
#blue { | |
width: 100px; | |
height: 100px; | |
background: #0000FF; | |
} |
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
<h1>Hello world!</h1> | |
<h2>I'm a subtitle. Try changing me!</h2> | |
<h3>Make these squares bigger! (hint - see the "css" tab)</h3> | |
<p>This is a paragraph.</p> | |
<p>How to "neutralize" CSS? Maybe wrong perspective: aim to override.</p> | |
<div id='red'> | |
</div> | |
<div id='blue'> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment