I am working on a code to create a custom "table" because I require some more intricate features that a regular table cannot provide.
<div class="container">
<cfloop index="x" from="1" to="5">
<div class="row d-none d-lg-flex py-2 fw-bold">
<cfloop index="y" from="1" to="6">
<div class="col-2 px-3">
<p>CONTENT</p>
</div>
</cfloop>
</div>
<hr>
</cfloop>
</div>
Currently, I am looking for a way to shift the entire construct 1 column to the left. Using "col-1" on the first one won't work since the first one needs to be 2 columns wide as well. Is there a way to achieve this?
It is not feasible to move the entire container, as there are other elements inside it that need to remain in their correct positions.