我需要使用JAVA在HTML中并排打印两个表的输出。但是它们没有并排打印。我使用以下代码:
FileWriter fw = new FileWriter(strFilePath,true); //the true will append the new data
fw.write("<h1>"+name+"</h1>");
fw.write("<table float='left' border='1' BORDERCOLOR=Black width='50%' height='47'>");
fw.write("<tr>");
fw.write("<td width='24%' bgcolor='#CCCCFF'><b><font color='#000000' face='Tahoma' size='2'>Environment</font></b></td>");
fw.write("<td width='24%' bgcolor='#CCCCFF'><b><font color='#000000' face='Tahoma' size='2'>Account</font></b></td>");
fw.write("<td width='23%' bgcolor='#CCCCFF'><b><font color='#000000' face='Tahoma' size='2'>COUNT</font></b></td>");
fw.write("<td width='18%' bgcolor='#CCCCFF' align='center'><b><font color='#000000' face='Tahoma' size='2'>Frequency</font></b></td>");
fw.write("</tr>");
fw.close();
1条答案
按热度按时间yuvru6vn1#
在HTML/CSS中,你需要给予第一个表浮点数:left;第二个表边距-left
例如