Skip to content

Instantly share code, notes, and snippets.

@anaguzmn
Created November 2, 2016 20:17
Show Gist options
  • Save anaguzmn/3cb8c0536ddc1ce0222783c7bd70a3ff to your computer and use it in GitHub Desktop.
Save anaguzmn/3cb8c0536ddc1ce0222783c7bd70a3ff to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=3cb8c0536ddc1ce0222783c7bd70a3ff
<!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>
.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