日韩成人免费在线_国产成人一二_精品国产免费人成电影在线观..._日本一区二区三区久久久久久久久不

當前位置:首頁 > 科技  > 軟件

為什么Tailwindcss在開發者中如此受歡迎?揭秘背后的原因!

來源: 責編: 時間:2024-09-10 09:50:38 122觀看
導讀1.邂逅 tailwindcss我們平時寫 css 樣式是這樣的:<template> <div class="zhifou"> <p>好好學習</p> <p>天天向上</p> </div></template><script setup></script><style lang="scss" scoped>.zhifo

1.邂逅 tailwindcss

我們平時寫 css 樣式是這樣的:iaq28資訊網——每日最新資訊28at.com

<template>  <div class="zhifou">    <p>好好學習</p>    <p>天天向上</p>  </div></template><script setup></script><style lang="scss" scoped>.zhifou {  margin: auto;  width: 600px;  height: 300px;  background-color: blue;  font-size: 20px;}</style>

后來隨著前端技術的發展,原子化 CSS 出現了。原子化 CSS 是一種 CSS 框架。iaq28資訊網——每日最新資訊28at.com

在原子化 CSS 中,CSS 組件被拆分為更小的部分,這些部分可以獨立地編輯、測試和重用。這些原子通常是單個像素或極其微小的變化,例如顏色、大小、位置等。iaq28資訊網——每日最新資訊28at.com

原子化 CSS 有助于減少代碼量,提高代碼的可維護性和可重用性。iaq28資訊網——每日最新資訊28at.com

原子化 CSS 寫法:iaq28資訊網——每日最新資訊28at.com

<div class="w-10 h-10 bg-red-100 text-10">    <p>好好學習</p>    <p>天天向上</p>  </div>

原子化 CSS 框架更像是一個已經封裝好的 CSS 工具類。iaq28資訊網——每日最新資訊28at.com

例如:我們在類選擇器中寫了 w-[10px],原子化 CSS 框架經過掃描,將 w-[10px] 掃描成iaq28資訊網——每日最新資訊28at.com

width:10px;

也就是說,我們只要按照這個框架的要求去任意組合,框架最后一掃描,就能生成我們想要的 CSS 樣式。這樣會大大減少代碼量,提高工作效率。iaq28資訊網——每日最新資訊28at.com

而本文介紹的 tailwindcss 就是市面上非常熱門的原子化 CSS 框架。iaq28資訊網——每日最新資訊28at.com

tailwindcss 中文網iaq28資訊網——每日最新資訊28at.com

https://www.tailwindcss.cn/

圖片圖片iaq28資訊網——每日最新資訊28at.com

4. tailwindcss 常用方法

4.1 設置寬高

1.w-[ ],h-[ ] 設置任意寬高

<template>  <div>    <div class="bg-blue-600 w-[200px] h-[100px]">      <p>好好學習</p>      <p>天天向上</p>    </div>    <div class="bg-red-600 w-[20rem] h-[10rem]">      <p>好好學習</p>      <p>天天向上</p>    </div>  </div></template><script setup></script><style lang="scss" scoped></style>

圖片圖片iaq28資訊網——每日最新資訊28at.com

4.7 定位

  • relative 表示 position: relative;
  • absolute 表示 position: absolute;
  • fiexed 表示 position: fiexed;
  • z-1 表示 z-index:1;

數值:1 表示 4pxiaq28資訊網——每日最新資訊28at.com

  • top-1 表示 top: 4px;
  • left-2 表示 left: 8px;
  • right-10 表示 right: 40px;
  • bottom-3 表示 bottom: 12px;

任意值:iaq28資訊網——每日最新資訊28at.com

  • top-[5px]
  • left-[10rem]
  • right-[20px]
  • bottom-[100px]

例:iaq28資訊網——每日最新資訊28at.com

<div  class="bg-blue-600 w-[300px] h-[300px] hover:bg-red-300 fixed bottom-[20px] left-[100px]">  <p class="font-bold text-yellow-400">好好學習</p>  <p>天天向上</p></div>

圖片圖片iaq28資訊網——每日最新資訊28at.com

4.8 flex 布局

  • flex 表示 display: flex;
  • flex-row 表示 flex-direction: row;
  • flex-col 表示 flex-direction: column;
  • justify-center 表示 justify-content: center;
  • items-center 表示 align-items: center;
  • flex-wrap 表示換行
  • flex-nowrap 表示不換行
  • flex-1 表示 flex:1;

例:iaq28資訊網——每日最新資訊28at.com

<div  class="bg-blue-600 w-[300px] h-[300px] flex flex-row justify-center items-center ">  <p class="bg-yellow-400 w-[100px] h-[100px] text-white-400">好好學習</p>  <p class="bg-red-400 w-[100px] h-[100px] text-white-400">天天向上</p></div>

圖片圖片iaq28資訊網——每日最新資訊28at.com

4.9 樣式復用

下面的例子中 p 標簽有重復的樣式iaq28資訊網——每日最新資訊28at.com

<div  class="bg-blue-600 w-[300px] h-[300px] flex flex-row justify-center items-center flex-wrap">  <p class="bg-red-400 w-[100px] h-[100px] text-white text-[20px]">好好學習</p>  <p class="bg-yellow-400 w-[100px] h-[100px] text-white text-[20px]">天天向上</p></div>

如果遇到重復的樣式,我們可以借助 @layer 和 @apply 指令定義全局復用的樣式:iaq28資訊網——每日最新資訊28at.com

1.在 TailwindCSS 的樣式文件中定義復用樣式iaq28資訊網——每日最新資訊28at.com

圖片圖片iaq28資訊網——每日最新資訊28at.com

@layer components {  .title {    @apply w-[100px] h-[100px] text-white text-[20px];  }}

2.在類選擇器中使用復用類名iaq28資訊網——每日最新資訊28at.com

<p class="title">好好學習</p><p class="title">天天向上</p>


iaq28資訊網——每日最新資訊28at.com

本文鏈接:http://www.www897cc.com/showinfo-26-112771-0.html為什么Tailwindcss在開發者中如此受歡迎?揭秘背后的原因!

聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。郵件:2376512515@qq.com

上一篇: 2024年了,為什么 CSS 預處理器依然火爆?

下一篇: 如何利用CSS實現三角形、扇形、聊天氣泡框

標簽:
  • 熱門焦點
Top 主站蜘蛛池模板: 新疆| 涟水县| 安丘市| 六枝特区| 哈巴河县| 齐齐哈尔市| 深泽县| 麻栗坡县| 乳山市| 会宁县| 郯城县| 开化县| 江华| 江源县| 莱西市| 随州市| 茂名市| 榆林市| 珲春市| 鞍山市| 卓资县| 昌平区| 环江| 石棉县| 剑阁县| 池州市| 宁海县| 四平市| 湾仔区| 玉林市| 乐清市| 孟连| 柘城县| 库尔勒市| 合江县| 丰宁| 沂源县| 西林县| 甘谷县| 平泉县| 台州市|