Skip to content

Instantly share code, notes, and snippets.

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

Amamgbu commented Nov 2, 2016

  1. Insert a link tag in this form:
2. your border-radius inputs are not closed. End them with ";" and this would solve your problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment