Bootstrap: next to each other rather than on top -
ok, thought
<div class="container"> <div class="row"> <div class="col-lg-2"> <table id="example" class="display"> <thead> <tr> <th>property</th> <th>value</th> </tr> </thead> </table> </div> <div class="col-lg-10"> <div id="container" style="height: 535px; margin: 0 auto"> </div> </div> </div> </div>
should result in table next graph. (both objects described in scripts). on private desktop both objects appear on top of each other...
any ideas don't see here?
remember class .col-lg-2
not exist in bootstrap. must use .col-xs-2
. replace <div class="col-lg-2">
<div class="col-xs-2">
, , should good. luck!
Comments
Post a Comment