Created
November 2, 2016 20:17
-
-
Save anaguzmn/3cb8c0536ddc1ce0222783c7bd70a3ff to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=3cb8c0536ddc1ce0222783c7bd70a3ff
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> | |
<div class="allbig" id="three"></div> | |
<div class="allbig" id="four"></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; | |
} | |
.allbig { | |
height: 300px; | |
width: 300px; | |
} | |
#one{ | |
background-color: green; | |
} | |
#two{ | |
background-color: yellow; | |
} | |
#three{ | |
background-color: blue; | |
border-radius:770px} | |
#four{ | |
background-color: red; | |
border-radius: 40px | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment