Is it correct to say that a bootstrap grid is made up of 12 columns horizontally (as per the Grid System Documentation])? If I define two columns within a fluid container (always with a width of 100%), the first column as col-md-3, and the second as col-md-9. Why does my second column always end up below the first one instead of being next to it?
var dataSet = [
["Tiger Nixon", "System Architect", "Edinburgh", "5421", "2011/04/25", "$320,800"],
["Garrett Winters", "Accountant", "Tokyo", "8422", "2011/07/25", "$170,750"],
// more data...
];
$(document).ready(function () {
$('#example').DataTable({
data: dataSet,
columns: [
{ title: "Name" },
{ title: "Position" },
// more columns...
]
});
});
#newBTN, #updtBTN {
background: #B3AB7D;
padding: 10px;
text-align: center;
border-radius: 5px;
color: white;
font-weight: bold;
margin: 0 auto;
}
// more css...
</body>
</html>