欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 财经 > 金融 > Python私教张大鹏 Vue3整合Tailwindcss之width样式类

Python私教张大鹏 Vue3整合Tailwindcss之width样式类

2024/11/30 12:33:12 来源:https://blog.csdn.net/qq_37703224/article/details/139469206  浏览:    关键词:Python私教张大鹏 Vue3整合Tailwindcss之width样式类

基础样式

ClassProperties
w-0width: 0px;
w-pxwidth: 1px;
w-0.5width: 0.125rem; /* 2px */
w-1width: 0.25rem; /* 4px */
w-1.5width: 0.375rem; /* 6px */
w-2width: 0.5rem; /* 8px */
w-2.5width: 0.625rem; /* 10px */
w-3width: 0.75rem; /* 12px */
w-3.5width: 0.875rem; /* 14px */
w-4width: 1rem; /* 16px */
w-5width: 1.25rem; /* 20px */
w-6width: 1.5rem; /* 24px */
w-7width: 1.75rem; /* 28px */
w-8width: 2rem; /* 32px */
w-9width: 2.25rem; /* 36px */
w-10width: 2.5rem; /* 40px */
w-11width: 2.75rem; /* 44px */
w-12width: 3rem; /* 48px */
w-14width: 3.5rem; /* 56px */
w-16width: 4rem; /* 64px */
w-20width: 5rem; /* 80px */
w-24width: 6rem; /* 96px */
w-28width: 7rem; /* 112px */
w-32width: 8rem; /* 128px */
w-36width: 9rem; /* 144px */
w-40width: 10rem; /* 160px */
w-44width: 11rem; /* 176px */
w-48width: 12rem; /* 192px */
w-52width: 13rem; /* 208px */
w-56width: 14rem; /* 224px */
w-60width: 15rem; /* 240px */
w-64width: 16rem; /* 256px */
w-72width: 18rem; /* 288px */
w-80width: 20rem; /* 320px */
w-96width: 24rem; /* 384px */
w-autowidth: auto;
w-1/2width: 50%;
w-1/3width: 33.333333%;
w-2/3width: 66.666667%;
w-1/4width: 25%;
w-2/4width: 50%;
w-3/4width: 75%;
w-1/5width: 20%;
w-2/5width: 40%;
w-3/5width: 60%;
w-4/5width: 80%;
w-1/6width: 16.666667%;
w-2/6width: 33.333333%;
w-3/6width: 50%;
w-4/6width: 66.666667%;
w-5/6width: 83.333333%;
w-1/12width: 8.333333%;
w-2/12width: 16.666667%;
w-3/12width: 25%;
w-4/12width: 33.333333%;
w-5/12width: 41.666667%;
w-6/12width: 50%;
w-7/12width: 58.333333%;
w-8/12width: 66.666667%;
w-9/12width: 75%;
w-10/12width: 83.333333%;
w-11/12width: 91.666667%;
w-fullwidth: 100%;
w-screenwidth: 100vw;
w-svwwidth: 100svw;
w-lvwwidth: 100lvw;
w-dvwwidth: 100dvw;
w-minwidth: min-content;
w-maxwidth: max-content;
w-fitwidth: fit-content;

基础样式总结

常用样式类:

  • w-full:宽度是百分百
  • w-screen:宽度是屏幕宽度

数字:

  • 1到12是连续的
  • 12到64是间隔4

百分比:2,3,4,5,6,12,支持百分比,比如1/3,1/6,1/12等。

案例:不同宽度的盒子

需求:创建一列,包含8个盒子,盒子的宽度从上到下越来越大,选择一种颜色,颜色也越来越深。

vue3示例:

<script setup>
</script>
<template><div class="flex flex-col bg-indigo-50 p-8 space-y-3"><div class="h-12 bg-teal-100 w-12"></div><div class="h-12 bg-teal-200 w-20"></div><div class="h-12 bg-teal-300 w-28"></div><div class="h-12 bg-teal-400 w-36"></div><div class="h-12 bg-teal-500 w-44"></div><div class="h-12 bg-teal-600 w-52"></div><div class="h-12 bg-teal-700 w-60"></div><div class="h-12 bg-teal-800 w-72"></div></div>
</template>

在这里插入图片描述

案例:百分比宽度

需求:已知宽度支持2,3,4,5,6,12这六种百分比的形式。编写六行两列的盒子,每一行都使用百分比的形式,让盒子按照百分比的形式占据整行宽度。

vue3示例:

<script setup>
</script>
<template><div class="flex flex-wrap p-8 bg-indigo-50 space-y-3 space-y-reverse"><div class="w-1/2 h-12 bg-teal-300 rounded"></div><div class="w-1/2 h-12 bg-purple-300 rounded"></div><div class="w-1/3 h-12 bg-teal-300 rounded"></div><div class="w-2/3 h-12 bg-purple-300 rounded"></div><div class="w-1/4 h-12 bg-teal-300 rounded"></div><div class="w-3/4 h-12 bg-purple-300 rounded"></div><div class="w-1/5 h-12 bg-teal-300 rounded"></div><div class="w-4/5 h-12 bg-purple-300 rounded"></div><div class="w-1/6 h-12 bg-teal-300 rounded"></div><div class="w-5/6 h-12 bg-purple-300 rounded"></div><div class="w-1/12 h-12 bg-teal-300 rounded"></div><div class="w-11/12 h-12 bg-purple-300 rounded"></div></div>
</template>

在这里插入图片描述

案例:屏幕宽高

需求:将整个屏幕可见的区域都设置成一种颜色。

vue3示例:

<script setup>
</script>
<template><div class="w-screen h-screen bg-teal-300"></div>
</template>

在这里插入图片描述

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com