responsive three box section with tabular data or table data
here is a section in foundation with 3 hero boxes with images on top, and then a title and some tabular (is that the same as table?) data in each box, so could be good for some kinda products and then some specs on the product under the image.
What is responsive three box section for?
Good for a home page or a hero landing page section to show off three products with table data underneath and call to actions under that.
What can i do with this?
Use it in your own project or add it to a home page or landing page that has three products or items on it that require some table data.
Should i use this responsive three box section?
if you want to quickly add some data to the page and also are using the foundation css framework then this might save you some time.
What does it look like?
Here is an animated section example of what it may look like for responsive views.
And here is a static image of what it may look like.
HTML
<div class='boxsectiontable-wrap'>
<div class='grid-container'>
<div class="grid-x grid-padding-x grid-margin-x">
<div class="large-12 cell">
<div class="boxsectiontable">
<div class="boxsectiontable-title">
<h2>Box Section Title</h2>
</div>
<div class="boxsectiontable-boxes">
<div class="grid-x grid-margin-x">
<div class="large-4 cell">
<div class="boxsectiontable-box bstb1">
<div class="boxsectiontable-box-image">
</div>
<div class="boxsectiontable-box-title">
My Title
</div>
<div class="boxsectiontable-box-table">
<table>
<thead>
<tr>
<th>
Title One
</th>
<th>
Title Two
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
</tbody>
</table>
</div>
<div class="boxsectiontable-box-link">
<a href="#!">Read More</a>
</div>
</div>
</div>
<div class="large-4 cell">
<div class="boxsectiontable-box bstb2">
<div class="boxsectiontable-box-image">
</div>
<div class="boxsectiontable-box-title">
My Title
</div>
<div class="boxsectiontable-box-table">
<table>
<thead>
<tr>
<th>
Title One
</th>
<th>
Title Two
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
</tbody>
</table>
</div>
<div class="boxsectiontable-box-link">
<a href="#!">Read More</a>
</div>
</div>
</div>
<div class="large-4 cell">
<div class="boxsectiontable-box bstb3">
<div class="boxsectiontable-box-image">
</div>
<div class="boxsectiontable-box-title">
My Title
</div>
<div class="boxsectiontable-box-table">
<table>
<thead>
<tr>
<th>
Title One
</th>
<th>
Title Two
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
<tr>
<td>
Data One
</td>
<td>
Data Two
</td>
</tr>
</tbody>
</table>
</div>
<div class="boxsectiontable-box-link">
<a href="#!">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
CSS
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
.boxsectiontable-wrap {
margin:0 auto;
width:100%;
max-width:1200px;
padding:50px 0;
}
.boxsectiontable {}
.boxsectiontable-title {}
.boxsectiontable-box-link {}
.boxsectiontable-box-link a {
}
.boxsectiontable-box-table {
margin-bottom:10px;
}
.boxsectiontable-box-title {
font-weight:bold;
font-family:"Poppins", sans-serif;
margin-bottom:10px;
}
.boxsectiontable-box-image {
height:200px;
width:100%;
margin-bottom:10px;
/* background:url(https://unsplash.it/900/700) center no-repeat; */
}
.bstb1 .boxsectiontable-box-image{
background:url(https://unsplash.it/900/700) center no-repeat;
background-size:cover;
}
.bstb2 .boxsectiontable-box-image{
background:url(https://unsplash.it/900/700) center no-repeat;
background-size:cover;
}
.bstb3 .boxsectiontable-box-image{
background:url(https://unsplash.it/900/700) center no-repeat;
background-size:cover;
}
Scripts
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.3/css/foundation.min.css" integrity="sha512-2meDMHyoDRV8O0gr5Diq32ch+6QqI9Af9Km4eFwgxZg356CbUI4S30C3zuUetkNAN4Bn+17y9OgxoQ3HnQ648w==" crossorigin="anonymous" referrerpolicy="no-referrer" />