In one of my applications, we need a group block function, as shown in the figure below. We use Twitter Bootstrap 3 css. I searched if there was any feature in Bootstrap 3, but could not find any, I don’t know if I was missing any while I created my own CSS to create such a structure, but it didn’t seem to be very good.
Can someone please tell me a component as it is available in Bootstrap 3
CSS
table {
border-collapse:separate;
border:solid #2e6da4 1px;
border-radius:6px;
-moz-border-radius:6px;
}
td, th {
border-left:solid #2e6da4 1px;
border-top:solid #2e6da4 1px;
}
th {
background-color: #337ab7;
border-top: none;
}
td:first-child {
border-left: none;
}
Jsfiddle

source
share