TD无处不在

时间:2013-02-07 06:46:22

标签: html css ruby-on-rails

请帮助,我希望 td 到处都是相同的尺寸。这是一个垂直滚动。 我使用了身高,这没有帮助。

我的风格只是 th (他的怀抱)

http://imageshack.us/f/402/feedbacktz.jpg/

  <table class="table table-striped" id="feedback_table">
    <thead>
      <tr>
        <th style="width: 25px">Anything</th>
        <th style="width: 70px">Anything</th>
        <th style="width: 80px">Anything</th>
        <th style="white-space:nowrap; width: 125px">Anything</th>
        <th style="width: 360px">Anything</th>
        <th style="width: 114px">Anything</th>
      </tr>
    </thead>
    <tbody>

如果评论包含大量文字,则文字评论过于宽泛(参见附件)。需要滚动才能看到编辑按钮。

2 个答案:

答案 0 :(得分:1)

使用。

设置表格
<table class="table table-striped" id="feedback_table" width="774">

table.table { width: 774px; }

答案 1 :(得分:0)

这可能对您的情况有所帮助。

http://www.w3schools.com/cssref/pr_pos_overflow.asp

我根据您的需要修改了代码,例如下面的

<p>overflow:scroll</p><table>
<tr>
  <td>
  <div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
 </td>
</tr>
</table>

// CSS

div.scroll { 
background-color:#00FFFF; 
width:100px; height:100px;
overflow:scroll;
}

希望这有帮助!