JSFiddle - React, Tailwind, and code Playground

by NicoO

HTML

<div class="photo-box-container">
    <div class="photo-box">
        Foo
    </div>
    <div class="photo-box">
        Foo2
    </div>
    <div class="clear"></div>
</div>

CSS

.photo-box-container {
    margin-left: 45px;
    margin-top: 20px;
    background: red;
  
}

.photo-box {
    width: 450px;
    height: 300px;
    background: #e7e6dd;
    padding: 20px;
    float:left;
}

.clear {
    clear: both;
}