本文介绍了修正表td的宽度和高度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的项目中,我试图, code>执行以下操作:

In my project, I am trying to fix the width and height of td's by doing the following:

td{
   max-width:100px;
   max-height:100px;
   width:100px;
   height:100px;
   overflow:hidden;
   word-wrap:break-word;  /* CSS3 */
}

这里是

但你可以看到

无论如何修复它?

请给出一个跨浏览器的解决方案。

Please give a solution which is cross-browser.

如果extjs中有修复程序,也可以帮助我。

If there is a fix available in extjs then that could also help me.

PS:我知道

DEMO

这篇关于修正表td的宽度和高度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 10:31