My initial goal seemed straightforward: to place the description 'Print Flags' on the left side of the box in the image below, with buttons centered on the right: https://i.sstatic.net/n0z7l.png
Despite my efforts, this is as close as I've come.
This is my current code:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" />
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/VERSION/styles/kendo.common-bootstrap.min.css">
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/VERSION/styles/kendo.bootstrap.min.css">
<div class="col" style="position: relative; text-align: center; border-style: solid; border-width: thin">
<div style="position: absolute; left: 0px; background-color: #ff8c00; font-weight: bold;">Print Flags
</div>
<kendo-button name="printTrue" type="button" onclick="FlipAllPrintFlags(1)">All Print To True</kendo-button>
<kendo-button name="printFalse" type="button" onclick="FlipAllPrintFlags(2)"> All Print To False</kendo-button>
</div>
Although following a suggested solution brought me closer to my desired layout, it unfortunately caused the div not to be filled vertically. I have updated my code to reflect the latest changes: