Created
November 2, 2016 20:26
-
-
Save anaguzmn/1e2caca77488c66b0cd2374e5abb6bf0 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=1e2caca77488c66b0cd2374e5abb6bf0
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
.allbig { | |
height: 300px; | |
width: 300px; | |
} | |
#one{ | |
height: 200px; | |
width:200px; | |
background-color: green; | |
border-radius:770px} | |
#two{ height: 300px; | |
background-color: purple; | |
} | |
#three{ | |
background-color: blue; | |
border-radius:770px} | |
#four{ | |
background-color: brown; | |
border-radius: 40px | |
} |
Amamgbu
commented
Nov 2, 2016
- Insert a link tag in this form:
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment