2013-02-07 42 views
0

請幫忙,我想td到處都是一樣的大小。這是一個垂直滾動。 我用身高,這並沒有幫助。TD懷特無處不在

我只稱呼第(他的懷特)

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> 

如果評論中含有大量的文字,文字審查的範圍太廣(見附件)。需要滾動才能看到編輯按鈕。

+0

你有什麼did.Please給你的代碼?並讓問題更容易理解.. –

回答

1

設置表格。

<table class="table table-striped" id="feedback_table" width="774"> 

table.table { width: 774px; } 
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; 
} 

希望這可以幫助修改了代碼!

+0

對不起,這是個壞主意 – xdsemx

+0

對不起,w3schools也是一個不好的來源 –