Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <div class="container-fluid">
  2. <div class="Scroll">
  3. <div class="Down">
  4. <div class="form-group">
  5. <input type="text" class="form-control input-lg" placeholder="Search">
  6. </div>
  7. <div class="form-group" style="display:inline-block;width:300px;">
  8. <h4><small>Select Date From <span class="glyphicon glyphicon-calendar"></span></small></h4>
  9. <input type="date" class="form-control" style="width:250px;" class="form-control" />
  10. <h4><small>Select Date To <span class="glyphicon glyphicon-calendar"></span></small> </h4>
  11. <input type="date" class="form-control" style="width:250px;" class="form-control" />
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="Down">
  17. <table>
  18. <thead>
  19. <tr>
  20. <th>NAME</th>
  21. <th>DATE</th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <tr ng-repeat="name in names">
  26. <td>{{name.name}}</td>
  27. <td>{{name.date}}</td>
  28. </tr>
  29. </tbody>
  30. </table>
  31. </div>
  32.  
  33. .Scroll {
  34. position: fixed;
  35. }
  36. .Down {
  37. clear: both;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement