Created
October 24, 2016 16:25
-
-
Save Bijesse/f6e8c57af2e386533abc93d5c20252cb to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=f6e8c57af2e386533abc93d5c20252cb
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>4 Boxes</title> | |
</head> | |
<body> | |
<div class="all" id="one"></div> | |
<div class="all" id="two"></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
.all{ | |
height: 200px; | |
width: 200px; | |
border-radius: 40px; | |
} | |
#one{ | |
background-color: green; | |
} | |
#two{ | |
background-color: yellow; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment