源代码:
下载代码
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="flex items-center justify-around p-4 bg-gray-200 rounded-lg text-lg"> <div class="bg-blue-500 text-white p-2 rounded">Item 1</div> <div class="bg-green-500 text-white p-2 rounded">Item 2</div> <div class="bg-red-500 text-white p-2 rounded">Item 3</div> </div> </body> </html>
运行结果: