- Published on
Beginners Guide: Create A Tabs line with icons With Tailwind CSS

- What is Tailwind CSS?
- The description of Tabs line with icons ui component
- Why use Tailwind CSS to make a Tabs line with icons ui component?
- The preview of Tabs line with icons ui component
- The source code of Tabs line with icons ui component
- How to make a Tabs line with icons with Tailwind CSS?
- Install tailwind css of verion 2.2.4
- All the unility class needed to make a Tabs line with icons component
- 29 steps to make a Tabs line with icons component with Tailwind CSS
- Conclusion
What is Tailwind CSS?
Tailwind CSS is a utility-first CSS framework that focuses on creating personalized user interfaces quickly. It can gives you all the building blocks you are able to create personalized designs without having to fight to override irritating opinionated styles. Also, Tailwind CSS is a highly configurable, low-level CSS framework.
The description of Tabs line with icons ui component
Tabs line with icons form merakiui.com
Why use Tailwind CSS to make a Tabs line with icons ui component?
- It can make the building process of Tabs line with icons ui component faster and more easily.
- Enables building complex responsive layouts and components freely.
- Minimum lines of CSS code in Tabs line with icons component file.
The preview of Tabs line with icons ui component
Free download of the Tabs line with icons's source code
The source code of Tabs line with icons ui component
<div class="h-screen flex justify-center items-center">
<div class="flex border-b border-gray-200 dark:border-gray-700">
<button class="flex items-center h-10 px-2 py-2 -mb-px text-center text-indigo-600 bg-transparent border-b-2 border-indigo-500 sm:px-4 -px-1 dark:border-indigo-400 dark:text-indigo-300 whitespace-nowrap focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 mx-1 sm:w-6 sm:h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H5a2 2 0 00-2 2v9a2 2 0 002 2h14a2 2 0 002-2V8a2 2 0 00-2-2h-5m-4 0V5a2 2 0 114 0v1m-4 0a2 2 0 104 0m-5 8a2 2 0 100-4 2 2 0 000 4zm0 0c1.306 0 2.417.835 2.83 2M9 14a3.001 3.001 0 00-2.83 2M15 11h3m-3 4h2" />
</svg>
<span class="mx-1 text-sm sm:text-base"> Profile </span>
</button>
<button class="flex items-center h-10 px-2 py-2 -mb-px text-center text-gray-700 bg-transparent border-b-2 border-transparent sm:px-4 -px-1 dark:text-white whitespace-nowrap cursor-base focus:outline-none hover:border-gray-400">
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 mx-1 sm:w-6 sm:h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z" />
</svg>
<span class="mx-1 text-sm sm:text-base"> Account </span>
</button>
<button class="flex items-center h-10 px-2 py-2 -mb-px text-center text-gray-700 bg-transparent border-b-2 border-transparent sm:px-4 -px-1 dark:text-white whitespace-nowrap cursor-base focus:outline-none hover:border-gray-400">
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 mx-1 sm:w-6 sm:h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" />
</svg>
<span class="mx-1 text-sm sm:text-base"> Notifiaction </span>
</button>
</div>
</div>
How to make a Tabs line with icons with Tailwind CSS?
Install tailwind css of verion 2.2.4
Use the script
html tag to import the script of Tailwind CSS of the version 2.2.4
<script src="https://cdn.tailwindcss.com"></script>
All the unility class needed to make a Tabs line with icons component
h-screen
flex
border-b
border-gray-200
dark:border-gray-700
h-10
px-2
py-2
-mb-px
text-center
text-indigo-600
bg-transparent
border-b-2
border-indigo-500
sm:px-4
-px-1
dark:border-indigo-400
dark:text-indigo-300
w-4
h-4
mx-1
sm:w-6
sm:h-6
text-sm
sm:text-base
text-gray-700
border-transparent
dark:text-white
hover:border-gray-400
29 steps to make a Tabs line with icons component with Tailwind CSS
Use
h-screen
to make an element span the entire height of the viewport.Use
flex
to create a block-level flex container.Control the border color of an element to b using the
border-b
utilities.Control the border color of an element to gray-200 using the
border-gray-200
utilities.Control the border color of an element to gray-700 using the
dark:border-gray-700
utilities in dark theme.Use
h-10
to set an element to a fixed height(2.5rem).Control the horizontal padding of an element to 0.5rem using the
px-2
utilities.Control the vertical padding of an element to 0.5rem using the
py-2
utilities.Control the margin on bottom side of an element to px using the
-mb-px
utilities.Control the text color of an element to center using the
text-center
utilities.Control the text color of an element to indigo-600 using the
text-indigo-600
utilities.Control the background color of an element to transparent using the
bg-transparent
utilities.Control the border color of an element to b-2 using the
border-b-2
utilities.Control the border color of an element to indigo-500 using the
border-indigo-500
utilities.Control the horizontal padding of an element to 1rem at only small screen sizes using the
sm:px-4
utilities.Control the horizontal padding of an element to -0.25rem using the
-px-1
utilities.Control the border color of an element to indigo-400 using the
dark:border-indigo-400
utilities in dark theme.Control the text color of an element to indigo-300 in dark theme using the
dark:text-indigo-300
utilities.Use
w-4
to set an element to a fixed width(1rem).Use
h-4
to set an element to a fixed height(1rem).Control the horizontal margin of an element to 0.25rem using the
mx-1
utilities.Use
sm:w-6
to set an element to a fixed width(1.5rem) at only small screen sizes.Use
sm:h-6
to set an element to a fixed height(1.5rem) at only small screen sizes.Control the text color of an element to sm using the
text-sm
utilities.Control the text color of an element to base at only small screen sizes using the
sm:text-base
utilities.Control the text color of an element to gray-700 using the
text-gray-700
utilities.Control the border color of an element to transparent using the
border-transparent
utilities.Control the text color of an element to white in dark theme using the
dark:text-white
utilities.Control the border color of an element to gray-400 using the
hover:border-gray-400
utilities on hover.
Conclusion
The above is a step-by-step tutorial on how to use Tailwind CSS to make a Tabs line with icons components, learn and follow along to implement your own components.