JSFiddle - React, Tailwind, and code Playground
by Glynne Turner
HTML
<script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css">
<section id="events" >
<div class="container">
<div class="row event">
<div class="col-sm-4">
image here
</div>
<div class="col-sm-4">
title here
</div>
<div class="col-sm-2">
button 1
</div>
<div class="col-sm-2">
button 2
</div>
</div>
<div class="row event">
<div class="col-sm-4">
image here
</div>
<div class="col-sm-4">
title here
</div>
<div class="col-sm-2">
button 1
</div>
<div class="col-sm-2">
button 2
</div>
</div>
<div class="row event">
<div class="col-sm-4">
image here
</div>
<div class="col-sm-4">
title here
</div>
<div class="col-sm-2">
button 1
</div>
<div class="col-sm-2">
button 2
</div>
</div>
<div class="row event">
<div class="col-sm-4">
image here
</div>
<div class="col-sm-4">
title here
</div>
<div class="col-sm-2">
button 1
</div>
<div class="col-sm-2">
button 2
</div>
</div>
<div class="row event">
<div class="col-sm-4">
image here
</div>
<div class="col-sm-4">
title here
</div>
<div class="col-sm-2">
button 1
</div>
<div class="col-sm-2">
button 2
</div>
</div>
<div class="row event">
...
CSS
*{box-sizing:border-box}
#events .container{border: 1px solid #a81f00}
#events{ padding:50px 0; color: #a81f00}
.event{ padding:10px; }
.event:last-of-type{ border-bottom:none}
.event:nth-of-type(even) {background-color:#e3e3e3;}