源代码:
下载代码
AI 编程工具
点击运行
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script src="https://cdn.tailwindcss.com"></script> </head> <body> <div class="relative rounded-xl overflow-auto"> <div class="shadow-sm overflow-hidden my-8"> <!-- 设置表格单元格内边距 --> <table class="table-auto w-full border-collapse"> <thead> <tr> <th class="border px-6 py-4">Header 1</th> <th class="border px-6 py-4">Header 2</th> <th class="border px-6 py-4">Header 3</th> </tr> </thead> <tbody> <tr> <td class="border px-6 py-4">Row 1, Col 1</td> <td class="border px-6 py-4">Row 1, Col 2</td> <td class="border px-6 py-4">Row 1, Col 3</td> </tr> </tbody> </table> <!-- 设置表格外边距 --> <table class="table-auto w-full border-collapse mt-8"> <thead> <tr> <th class="border px-4 py-2">Header 1</th> <th class="border px-4 py-2">Header 2</th> <th class="border px-4 py-2">Header 3</th> </tr> </thead> </table> </div> </div> </body> </html>
运行结果: