I am looking to create rows with columns that total more than 12, arranged in a way that allows the columns to scroll horizontally. Here is an example of what I have attempted:
<div class="container-fluid">
<div class="row">
<div class="col-3">
This is
</div>
<div class="col-9">
the first row
</div>
</div>
<div class="row">
<div class="col-6">
This is
</div>
<div class="col-6">
the second row
</div>
</div>
<!-- This should scroll -->
<div class="row schedule">
<!-- This is the header row -->
<div class="row">
<div class="col-3">
Employee Name:
</div>
<div class="col-3">
First Day:
</div>
<div class="col-3">
Second Day:
</div>
<div class="col-3">
Third Day:
</div>
<div class="col-3">
Fourth Day:
</div>
<div class="col-3">
Fifth Day:
</div>
<div class="col-3">
Sixth Day:
</div>
<div class="col-3">
Seventh Day:
</div>
<div class="col-3">
Totals:
</div>
</div>
</div>
</div>
For styling, I have used the following CSS:
.schedule{
overflow: auto;
white-space: nowrap;
-webkit-overflow-scrolling: auto;
background-color: lightblue;
}
Your help is greatly appreciated.
Sincerely, Mike