我无法设置使用 Tailwind CSS 创建的仪表板的网格结构
P粉186904731
P粉186904731 2023-09-10 18:06:41
[CSS3讨论组]

我正在使用 Tailwind CSS 编写仪表板前端。我创建了页面的网格结构并将我的组件放置在其中。然而,所有列的宽度和长度都是相等的。有些组件通常需要看起来更宽,所以我添加的一些组件与 Figma 文件不匹配。我该如何解决这个问题?

我的页面的代码:

// Components

// Layouts
import DashboardLayout from "@/layouts/dashboard"

// Icons
import { BoltIcon } from '@heroicons/react/24/solid'
import { Bars3CenterLeftIcon } from '@heroicons/react/24/solid'
import { EllipsisVerticalIcon } from '@heroicons/react/24/solid'
import { Squares2X2Icon } from '@heroicons/react/24/solid'
import { CheckIcon } from '@heroicons/react/24/solid'

// Types
type Props = {}

export default function OverviewTemplate({ }: Props) {
  return (
    
      
Dashboard

Want to see metrics for your latest video? Upload and post a video to get started.

Refer to your Network

Earn up to 15% recurring commission.

Gamification area

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

What’s new on Omnicourse

Product Development News
Newly published Contents

Tips & Tricks

How to Choose the best recording tool
5 Steps to Generate interesting Content
3 Ways to Earn Income via Omnicourse
Developing Productive Habits in 3 Steps
) }

Figma 文件示例:

我的页面如下所示:

P粉186904731
P粉186904731

全部回复(1)
P粉025632437

正如评论中所述,您可以使用 flex 而不是 grid 更好地实现此目的

输出:

代码:

<div class="flex h-screen flex-col bg-gray-300">
  <div>Dashboard</div>
  <div class="flex flex-1 gap-4">
    <div class="flex w-2/4 items-center justify-center rounded-lg bg-orange-300">Upload content</div>
    <div class="mb-7 flex w-1/4 flex-col gap-4">
      <div class="flex h-1/6 items-center justify-center rounded-lg bg-red-300">Content</div>
      <div class="flex h-2/6 items-center justify-center rounded-lg bg-yellow-300">Content</div>
      <div class="flex h-3/6 items-center justify-center rounded-lg bg-blue-300">Content</div>
    </div>
    <div class="flex h-5/6 w-1/4 items-center justify-center rounded-lg bg-green-300">Another content</div>
  </div>
</div>
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号