Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<div class="social">
          <div><i class="icon-facebook"></i></div>
          <div><i class="icon-facebook"></i></div>
          <div><i class="icon-facebook"></i></div>
          <div><i class="icon-facebook"></i></div>
</div>
</body>
</html>
 
.social {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 500px;
}
.social div {
  background: #f00;
  width: 50%;
}
.social div:nth-child(2) {
  background: #0f0;
}
.social div:nth-child(3) {
  background: #f0f;
}
.social div:nth-child(4) {
  background: #00f;
}
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers