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, minimum-scale=1.0">
  <title>JS Bin</title>
</head>
<body>
  <p><code><a href="https://drafts.csswg.org/css-display/#box-generation">display: contents;</a></code> causes an element to act as if it's replaced by its contents (including pseudo-elements).</p>
  <p>If it's supported, all four boxes appear in a row, and you won't see any red.</p>
  <p><code>display:contents</code> is supported in Firefox.</p>
  
  <div class="flexbox">
    <div class="box">1</div>
    <div class="boxes">
      <div class="box">2</div>
      <div class="box">3</div>      
    </div>
    <div class="box">4</div>
  </div>
  
  <p>By applying <code>display: contents</code> within a media query, you can dynamically alter which elements a flexbox flexes.</p>
</body>
</html>
 
html {
  line-height: 1.5;
  font-family: sans-serif;
}
.flexbox {
  display: flex;
  align-items: center;
}
.box {
  width: 100px;
  height: 100px;
  background: green;
  color: #fff;
  text-align: center;
  line-height: 100px;
  font-size: 80px;
  margin: 10px;
}
.boxes {
  display: contents;
  background: red;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
jakearchibaldpro
0viewers