源代码:
下载代码
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> <script> tailwind.config = { theme: { extend: { screens: { 'xs': '475px', // 添加一个新的小屏幕断点 'xxl': '1600px', // 添加一个超大屏幕断点 }, }, }, }; </script> </head> <body> <div class="xs:w-64 xxl:w-96">自适应宽度</div> </body> </html>
运行结果: