妈的,CSS:

电脑技术 电脑技术 153 人阅读 | 6 人回复 | 2024-12-14

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

x
太难搞了,bootstrap还没整明白,tailwind又来了


QQ20241214-152337.png


结构:
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8" />
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6.     <title>Tailwind CSS Card Example</title>
  7.     <link
  8.       href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css"
  9.       rel="stylesheet"
  10.     />
  11.   </head>
  12.   <body class="bg-gray-100">
  13.     <div class="container mx-auto mt-10">
  14.       <h1 class="text-center text-3xl font-bold text-blue-600">
  15.         Tailwind CSS Card Example
  16.       </h1>
  17.       <div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-5">
  18.         <div class="bg-white border border-gray-200 rounded-lg shadow-md p-5">
  19.           <h2 class="text-xl font-semibold">Card Title 1</h2>
  20.           <p class="text-gray-700">
  21.             This is a simple card with some text. It can contain any content you
  22.             want.
  23.           </p>
  24.           <button
  25.             class="mt-4 bg-blue-500 text-white font-bold py-2 px-4 rounded"
  26.           >
  27.             Action
  28.           </button>
  29.         </div>
  30.         <div class="bg-white border border-gray-200 rounded-lg shadow-md p-5">
  31.           <h2 class="text-xl font-semibold">Card Title 2</h2>
  32.           <p class="text-gray-700">
  33.             This is another card with different content. Tailwind makes it easy
  34.             to style.
  35.           </p>
  36.           <button
  37.             class="mt-4 bg-green-500 text-white font-bold py-2 px-4 rounded"
  38.           >
  39.             Action
  40.           </button>
  41.         </div>
  42.         <div class="bg-white border border-gray-200 rounded-lg shadow-md p-5">
  43.           <h2 class="text-xl font-semibold">Card Title 3</h2>
  44.           <p class="text-gray-700">
  45.             You can create as many cards as you need using Tailwind CSS.
  46.           </p>
  47.           <button
  48.             class="mt-4 bg-red-500 text-white font-bold py-2 px-4 rounded"
  49.           >
  50.             Action
  51.           </button>
  52.         </div>
  53.       </div>
  54.     </div>
  55.   </body>
  56. </html>
复制代码


回答|共 6 个

孤星88 发表于 4 天前| 字数 32 | 显示全部楼层

原来Tailwind也是CSS框架啊?我用的是W3.CSS框架。

点评

w3.css我看了一下,不太适合我。  发表于 4 天前

legs+ 发表于 4 天前| 字数 172 | 显示全部楼层

孤星88 发表于 2024-12-14 15:50
原来Tailwind也是CSS框架啊?我用的是W3.CSS框架。

我一般手写比较的多,毕竟我还是偏后端。vue用element plus,react用ant design,偶尔穿插一点CSS

我熟悉bootstrap和简单知道点tailwind

但是,w3.css我还是第一次知道,能简单的介绍一下,有什么心得

孤星88 发表于 4 天前| 字数 235 | 显示全部楼层

legs+ 发表于 2024-12-14 16:03
我一般手写比较的多,毕竟我还是偏后端。vue用element plus,react用ant design,偶尔穿插一点CSS

我熟 ...

原来如此,Bootstrap比较多人用,W3.CSS没有名气。

我是贪W3.CSS有许多现成模板,有几十个,而且是免费的:
https://www.w3schools.com/w3css/w3css_templates.asp

我只改用了几个,心得就说不上了,毕竟我没用过其他CSS框架,无法作比较。

legs+ 发表于 4 天前| 字数 157 | 显示全部楼层

孤星88 发表于 2024-12-14 16:38
原来如此,Bootstrap比较多人用,W3.CSS没有名气。

我是贪W3.CSS有许多现成模板,有几十个,而且是免费 ...

嗯,w3.css比较适合初学者,没什么生产力

不过,话说回来,css框架不外乎,工具类、布局、组件、表单等等

现在,前端特别卷,很多框架,新技术层出不穷

legs+ 发表于 4 天前| 字数 0 | 显示全部楼层

QQ20241214-173000.png



QQ20241214-173213.png

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则