Looking to create a tournament table using HTML and Bootstrap grid elements. Progress so far:
I wish I could share an image of the current layout, but my reputation is too low. Here's a link instead: https://i.sstatic.net/OedPj.jpg
Encountering two challenges at the moment:
1) Row three seems to have shifted slightly, especially with MAINCOL. WB2 also appears misplaced. -- Issue resolved
2) Is there a way to add borders for empty elements in row 2 (right under WB1 or LB1)? Currently, I'm using a white-colored div element with text "BYE" for the border to show up.
Here are the divs being used:
<div class="container">
<!-- Rows and Columns go here -->
</div>
And here's the CSS code (excluding Bootstrap col-xs-1 styles):
.stripeUP{
border-left: 1px solid #000;
}
.stripeDOWN{
border-right: 1px solid #000;
}
.spacer{
margin-top: 10px;
}
.colmaker{
margin-right: 1px;
}
.nobr {
white-space: nowrap;
}
.whitetext{
color: white;
}