Created
November 6, 2016 14:34
-
-
Save alexpelan/acd18d5c6fa8f211e4365ab947caf908 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: http://localhost:3001/?gist=acd18d5c6fa8f211e4365ab947caf908
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> | |
| <div> This is my div, it is cool </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
| div { | |
| background-color: yellow; | |
| border: 1px dotted black; | |
| height: 50px; | |
| width: 300px; | |
| margin-top: 5px; | |
| margin-bottom: 10px; | |
| margin-right: 8px; | |
| margin-left: 5px; | |
| padding-top: 5px; | |
| padding-bottom: 5px; | |
| padding-right: 5px; | |
| padding-left: 10px; | |
| text-align: left; | |
| float: right; | |
| color: red; | |
| text-decoration: underline; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment