bootstrap-datepicker宽度高度自适应

时间:2024-04-17 12:04:19

这种需求虽说不常有, 但是, 常在河边走哪有不湿鞋的程序员?

备忘一下,只需要覆盖几个css样式即可:

<style>

  .date-picker-container {}

  .date-picker-container .datepicker-inline {
    width: 100%;
    height: 100%;
  }

  .date-picker-container .table-condensed {
    width: 100%;
    height: 100%;
  }

</style>

<div class="date-picker-container">

</div>

完毕。