Published on

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

Tabs line with icons

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

  1. Use h-screen to make an element span the entire height of the viewport.

  2. Use flex to create a block-level flex container.

  3. Control the border color of an element to b using the border-b utilities.

  4. Control the border color of an element to gray-200 using the border-gray-200 utilities.

  5. Control the border color of an element to gray-700 using the dark:border-gray-700 utilities in dark theme.

  6. Use h-10 to set an element to a fixed height(2.5rem).

  7. Control the horizontal padding of an element to 0.5rem using the px-2 utilities.

  8. Control the vertical padding of an element to 0.5rem using the py-2 utilities.

  9. Control the margin on bottom side of an element to px using the -mb-px utilities.

  10. Control the text color of an element to center using the text-center utilities.

  11. Control the text color of an element to indigo-600 using the text-indigo-600 utilities.

  12. Control the background color of an element to transparent using the bg-transparent utilities.

  13. Control the border color of an element to b-2 using the border-b-2 utilities.

  14. Control the border color of an element to indigo-500 using the border-indigo-500 utilities.

  15. Control the horizontal padding of an element to 1rem at only small screen sizes using the sm:px-4 utilities.

  16. Control the horizontal padding of an element to -0.25rem using the -px-1 utilities.

  17. Control the border color of an element to indigo-400 using the dark:border-indigo-400 utilities in dark theme.

  18. Control the text color of an element to indigo-300 in dark theme using the dark:text-indigo-300 utilities.

  19. Use w-4 to set an element to a fixed width(1rem).

  20. Use h-4 to set an element to a fixed height(1rem).

  21. Control the horizontal margin of an element to 0.25rem using the mx-1 utilities.

  22. Use sm:w-6 to set an element to a fixed width(1.5rem) at only small screen sizes.

  23. Use sm:h-6 to set an element to a fixed height(1.5rem) at only small screen sizes.

  24. Control the text color of an element to sm using the text-sm utilities.

  25. Control the text color of an element to base at only small screen sizes using the sm:text-base utilities.

  26. Control the text color of an element to gray-700 using the text-gray-700 utilities.

  27. Control the border color of an element to transparent using the border-transparent utilities.

  28. Control the text color of an element to white in dark theme using the dark:text-white utilities.

  29. 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.