如何在引导响应表中为一行保持固定大小?

Posted

技术标签:

【中文标题】如何在引导响应表中为一行保持固定大小?【英文标题】:How can I keep a fixed size for one row in a bootstrap responsive table? 【发布时间】:2017-09-06 13:21:14 【问题描述】:

我使用引导程序中的响应表。我想保持第一行总是 500px。但是当我更改窗口大小时,它不会保持 500px:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"/>
   
<div class="table-responsive">
  <table class="table">
    <thead>
      <tr>
        <th style="width:500px">#</th>
        <th>Table heading</th>
        <th>Table heading</th>
        <th>Table heading</th>
        <th>Table heading</th>
        <th>Table heading</th>
        <th>Table heading</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>1</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
      </tr>
      <tr>
        <td>2</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
      </tr>
      <tr>
        <td>3</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
        <td>Table cell</td>
      </tr>
    </tbody>
  </table>
</div>

【问题讨论】:

尝试改用min-width:500px; @Option 太好了!没想到!工作:) 【参考方案1】:

只需将 width:500px 更改为 min-width:500px; 即可完成工作:-)

【讨论】:

【参考方案2】:

这应该可以解决它。但是,您会遇到响应性问题。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"/>
   
<div class="table-responsive">
      <table class="table">
        <thead>
          <tr>
            <th style="min-width:500px">#</th>
            <th>Table heading</th>
            <th>Table heading</th>
            <th>Table heading</th>
            <th>Table heading</th>
            <th>Table heading</th>
            <th>Table heading</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
            <td>Table cell</td>
          </tr>
        </tbody>
      </table>
    </div>

【讨论】:

以上是关于如何在引导响应表中为一行保持固定大小?的主要内容,如果未能解决你的问题,请参考以下文章

如何使 SVG 宽度响应但保持 SVG 高度不变?

如何保持响应式图像相同的高度?

具有固定包装器的引导网格 - 防止列堆叠

修复了引导列内的 div [关闭]

引导如何使固定高度响应?

如何更改引导表中页面大小的默认值?