Bootstrap table won't fill container width

前端 未结 8 1121
春和景丽
春和景丽 2020-12-24 04:43

I\'m writing a web site using bootstrap (3.3.2) with a simple table on one of the pages. I just have a simple header panel in one container, and another content container w

8条回答
  •  悲&欢浪女
    2020-12-24 05:25

    This solution worked for me:

    just add another class into your table element: w-100 d-block d-md-table

    so it would be :

    for bootstrap 4 w-100 set the width to 100% d-block (display: block) and d-md-table (display: table on min-width: 576px)

    ---

提交回复
热议问题