<th width=50px><center><%= StringUtil.getMapValue(linguist, "January") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "February") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "March") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "April") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "May") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "June") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "July") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "August") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "September") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "October") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "November") %></center></th>
                        <th width=50px><center><%= StringUtil.getMapValue(linguist, "December") %></center></th>
                
这样一段代码,我需要固定死每个TH的长度,但是我发现现在这种写法在不同的屏幕上由于屏幕宽度的问题可能会超出宽度,超出的部分会出现一些放缩,后面需要根据长度来画图,想问问各位有没有办法将长度定死,比较急 在线等