Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        6年前关闭。
                                                                                            
                
        
我试图找到一种方法,使我在键入文本后,单元格的宽度不会改变,而是使文本本身变短,或者文本可以在不增大表的情况下获得整个单元格。



    <td>
    <a href="http://www.google.com/">Cell 2</a>
  </td>

  <td>
    <a href="http://www.google.com/">Cell 2</a>
  </td>




Example

最佳答案

table-layout:fixed添加到表中。

.datagrid table{
    table-layout:fixed;
}


Updated fiddle here.

关于html - 使表格单元格保持相同的宽度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20878804/

10-10 20:05