Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
    <meta charset=utf-8 />
    <title>JS Bin</title>
</head>
<body>
    <div id="flexbox">
        <div class="l-col">
            <img src="http://placehold.it/350x150" title="" alt="" />
        </div>
        <div class="l-col">
            <p class="product-title">Decorated Pink High Heels</p>
            <p class="product-price">$25.99</p>
            <p class="product-title">Decorated Pink High Heels</p>
        </div>
  
        <div class="l-col">
            <img src="http://placehold.it/350x150" title="" alt="" />
        </div>
        <div class="l-col">
            <p class="product-title">Decorated Pink High Heels</p>
            <p class="product-price">$25.99</p>
        </div>
        <div class="l-col">
            <img src="http://placehold.it/350x150" title="" alt="" />
        </div>
        <div class="l-col">
            <p class="product-title">Decorated Pink High Heels</p>
            <p class="product-price">$25.99</p>
        </div>
        <div class="l-col">
            <img src="http://placehold.it/350x150" title="" alt="" />
        </div>
        <div class="l-col">
            <p class="product-title">Decorated Pink High Heels</p>
            <p class="product-price">$25.99</p>
        </div>
        <div class="l-col">
            <img src="http://placehold.it/350x150" title="" alt="" />
        </div>
        <div class="l-col">
            <p class="product-title">Decorated Pink High Heels</p>
            <p class="product-price">$25.99</p>
        </div>
    </div>
</body>
</html>
 
* {
    box-sizing: border-box;
}
#flexbox {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
    border: 3px solid black;
}
#flexbox .l-col {
    width: 22%;
    margin-bottom: 30px;
    background-color: red;
}
img {
  max-width: 100%;
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers