💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
~~~ <title>Document</title> <style> table,th,td{ border:1px solid #333; } /* 关键代码 */ table{ /* 边框折叠 */ border-collapse: collapse; width:500px; line-height: 50px; text-align: center; } </style> </head> <body> <table> <thead> <tr> <th>商城</th><th>电子产品</th> </tr> </thead> <tbody> <!-- table row --> <tr> <td>天猫</td><td>电脑</td> </tr> <tr> <td>jd</td><td>手机</td> </tr> </tbody> </table> </body> ~~~