源代码:
下载代码
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="relative font-mono text-white text-sm font-bold leading-6 h-56"> <div class="absolute top-0 left-1/2 -translate-x-1/2 md:-ml-24"> <div class="flow-root bg-stripes-purple rounded-b-lg"> <div class="bg-purple-500 rounded-lg shadow-lg p-4 mt-6">mt-6</div> </div> </div> <div class="absolute right-0 top-1/2 -translate-y-1/2"> <div class="flow-root bg-stripes-purple rounded-l-lg"> <div class="flex-none bg-purple-500 rounded-lg shadow-lg p-4 mr-4">mr-4</div> </div> </div> <div class="absolute bottom-0 left-1/2 -translate-x-1/2 md:ml-24"> <div class="flow-root bg-stripes-purple rounded-t-lg"> <div class="bg-purple-500 rounded-lg shadow-lg p-4 mb-8">mb-8</div> </div> </div> <div class="absolute left-0 top-1/2 -translate-y-1/2"> <div class="flow-root bg-stripes-purple rounded-r-lg"> <div class="flex-none bg-purple-500 rounded-lg shadow-lg p-4 ml-2">ml-2</div> </div> </div> </div> </div> </body> </html>
运行结果: