Last active
February 1, 2017 14:30
-
-
Save xavi-/7bf4bd4a93d13451ca50e4bdb6f871aa to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=7bf4bd4a93d13451ca50e4bdb6f871aa
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title</title> | |
</head> | |
<body> | |
<h1 class="hi">hi</h1> | |
<div id="container"> | |
<p class="hi">hi</p> | |
<p class="hey">hey</p> | |
<p>:)</p> | |
</div> | |
</body> | |
</html> |
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
/* | |
- text-align | |
- border-radius | |
- flex-grow: 1 | |
- `.parent .child` | |
- `element.klass` | |
- `.a, .b` | |
- :first-child and :last-child | |
*/ | |
body { font-size: 25px; font-family: arial; } | |
p { | |
border: 1px solid red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment