0

Im making a page (for IE) where is shows some values in a table format. But somehow there's some kind of whitespace before the first column making it uneven with the following columns. i just want the columns to be aligned http://i49.tinypic.com/14b3kuh.jpg

out.println("<div id='tablePos'>");
out.println("<ul class='ulStyle'>");
out.println("<li>");           
out.println("<table border='1'>");
out.println("<div id='divTableForms'>");
out.println("<tr id='process'><td>PROCESS</td></tr>");
while(rs.next()){
String process = rs.getString(2);
String processtype = rs.getString(1);
out.println("<tr id='process'><td id='process2'>"+processtype + "-" +process+"</td></tr>");
            }
out.println("<tr id='process'><td id='process2'></td></tr>");
out.println("</div>");
out.println("</table>");
out.println("</li>");
4

2 に答える 2

0

まず第一に、それはur divTableForms divのせいであると思います...そして第二に、uはout.println( "<tr id ='process'> <td id ='process2'> </ td> </ tr> ");

しかし、私はそれを含めていないのですが....Abdは最終的に複数のタグに同じIDを使用することはありません...特にループ内では決して使用しません..

于 2012-05-04T06:28:42.273 に答える
0

空の Table-Data (TD 要素) は常に問題でした。このhttp://bignosebird.com/docs/h34.shtml またはCSS を表示して、空のセルの境界線を表示しますか? .

out.println("<tr id='process'><td id='process2'>&nbsp;</td></tr>");

また、id 属性値は、html ドキュメント内で一意である必要があります。あなたのコードは、HTMLドキュメントの「プロセス」識別子を複製し、Id属性の代わりにクラスを使用します

于 2012-05-04T06:22:24.967 に答える