One issue arises when trying to fit 13 .col-2 elements within a single row in Bootstrap. The maximum size for a row is 12, making it impossible to evenly distribute the columns. To achieve three equal-width columns, use .col-4, or for two equal-width columns, use .col-6. More information on how the bootstrap grid system works can be found here.
Substituting .col-6 with .col-1 will result in an increase in line width as there are now 13 columns being used. It may be better to consider alternative solutions instead of relying solely on the Bootstrap grid system.
If creating a table is desired, utilizing the Bootstrap table allows for customization and flexibility in column numbers. Documentation for using Bootstrap tables can be found here.
For further customization of the table, a normal <table>
can be used instead.