Skip to content

Instantly share code, notes, and snippets.

Created September 20, 2015 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/5e5a014bf70ccd40240e to your computer and use it in GitHub Desktop.
Save anonymous/5e5a014bf70ccd40240e to your computer and use it in GitHub Desktop.
inline table?
<div ng-app="myApp" ng-controller="ctrl">
<div class="row">
<div class="col-md-4">
<div style="display:inline-block; min-height:290px;">
<datepicker ng-model="dt" min-date="minDate" max-date="maxDate" class="well well-sm"></datepicker>
</div>
</div>
<div class=".col-md-8">
<table class="table table-hover">
<thead>
<tr>
<th>Name:</th>
<th>Id</th>
<th>something?</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="usr in students">
<td>{{ usr.name }}</td>
<td>{{ usr.id }}</td>
<td>{{ usr.something }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment