日期:2014-05-17 浏览次数:20678 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>test</title> <style type="text/css"> table{ border-collapse:collapse;} table td{ border:1px solid #CCCCCC;} </style> </head> <body> <table width="500" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td style="border-bottom:none"> </td> <td style="border-bottom:none"> </td> <td style="border-bottom:none"> </td> <td style="border-bottom:none"> </td> <td style="border-bottom:none"> </td> </tr> </table> </body> </html>
------解决方案--------------------
感觉这样更好一些
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb_2312" /> <title>暂时没有标题</title> <style> table, tr, td { padding:0; margin:0;} #test { border:1px solid #f00; border-width:1px 0px 0px 1px; border-collapse:collapse; cell-padding:0; cell-spacing:0; height:150px; margin:100px auto; width:500px;} #test tr { border:0;} #test tr td { background:#ccc; border:1px solid #f00; border-width:0px 1px 1px 0px; text-align:center; text-valign:center;} </style> </head> <body> <table id="test"> <tr> <td>1.1</td> <td>1.2</td> <td>1.3</td> <td>1.4</td> <td>1.5</td> </tr> <tr> <td>2.1</td> <td>2.2</td> <td>2.3</td> <td>1.4</td> <td>1.5</td> </tr> <tr> <td>3.1</td> <td>3.2</td> <td>3.3</td> <td>1.4</td> <td>1.5</td> </tr> </table> </body> </html>
------解决方案--------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" conte