With the widespread spread of web standards, tables have gradually been forgotten by me, but tables still have their excellent side. Using tables for data processing really saves a lot of trouble! This is the code for a thin form, and it has passed standard verification!
The following is the quoted content: <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>Simple implementation of thin line table</title> <style type="text/css"> table{border:1px solid #000;border-width:1px 0 0 1px;margin:2px 0 2px 0;text-align:center;border-collapse:collapse;} td,th{border:1px solid #000;border-width:0 1px 1px 0;margin:2px 0 2px 0;text-align:left;} th{text-align:center;font-weight:600;font-size:12px;background-color:#F4F4F4;} </style> </head> <body> <table width="236"> <tr> <td>s</td> <td>s </td> <td>s</td> <td>s</td> <td>s</td> <td>s</td> </tr> </table> </body>
|