Published on

How To Make A Hero Section With Tailwind CSS In 5 Easy Steps

Tags
Hero Section

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 Hero Section ui component

Semoga bermanfaat untuk semua

Why use Tailwind CSS to create a Hero Section ui component?

  • It can make the building process of Hero Section ui component faster and more easily.
  • Enables building complex responsive layouts and components freely.
  • Minimum lines of CSS code in Hero Section component file.

The preview of Hero Section ui component

Free download of the Hero Section's source code

The source code of Hero Section ui component

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSC</title>
    <link href="https://unpkg.com/[email protected]^2/dist/tailwind.min.css" rel="stylesheet">
    <script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
    <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/aos.css" />
</head>
<style>
    #nav-mobile-btn.close span:first-child{
        transform: rotate(45deg);
        top: 4px;
        position: relative;
        background:#a0aec0;
    }
    #nav-mobile-btn.close span:nth-child(2){
        transform: rotate(-45deg);
        margin-top: 0px;
        background:#a0aec0;
    }
    html {
            scroll-behavior: smooth;
            background: #ffffff !important;
        }
</style>
<body class="overflow-x-hidden antialiased w-full">

    <!-- HERO SECTION -->
    <div>
        <div class="z-30 relative items-center justify-center w-full w-screen h-screen">
            <div>
                <div class="inset-0  h-screen">
                    <!-- <video 
                        src="https://youtu.be/OhyQRljsp2w" 
                        autoplay 
                        muted 
                        loop 
                        class="object-cover w-full h-full"
                    >
                    </video>      -->
                    <iframe class="object-cover w-full h-full" src="https://www.youtube.com/embed/OhyQRljsp2w?autoplay=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
                </div>

                <div class="absolute inset-0 z-40  flex justify-between h-full px-8 " >
                    <div class="relative z-20 w-full h-24  pt-2 ">
                        <div class="flex items-center justify-between h-full w-full">
                            <img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2F4.bp.blogspot.com%2F-Vwuv72HQYhs%2FVW6yjk1BqEI%2FAAAAAAAAC5Y%2FuDFxGmthr9A%2Fs1600%2FVans-vector-logo.png&f=1&nofb=1" class="w-auto h-12"/>

                            <div id="nav" class=" text-white absolute top-0 left-0 hidden block w-full mt-20 border-b border-gray-200 sm:border-none sm:px-5 sm:block sm:relative sm:mt-0 sm:px-0 sm:w-auto">
                                <nav class="flex flex-col items-center py-3  bg-red-500 sm:flex-row sm:bg-transparent sm:border-none sm:py-0">
                                    <a href="#" class="px-1 mb-1 mb-5 mr-0 text-base sm:mb-0 sm:mr-4 lg:mr-8">About</a>
                                    <a href="#_" class="px-1 mb-1 mb-5 mr-0 text-base sm:mb-0 sm:mr-4 lg:mr-8">Contact</a>
                                    <a href="#" class="px-1 mb-1 mb-5 mr-0 text-base sm:mb-0 sm:mr-4 lg:mr-8">Servies & Products</a>
                                </nav>
                            </div>

                            <div id="nav-mobile-btn" class="absolute top-0 right-0 z-50 block w-6 mt-8 mr-10 cursor-pointer select-none sm:hidden sm:mt-10">
                                <span class="block w-full h-1 mt-2 duration-200 transform bg-white rounded-full sm:mt-1"></span>
                                <span class="block w-full h-1 mt-1 duration-200 transform bg-white rounded-full"></span>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="absolute inset-0 z-20 flex items-center justify-center h-screen w-full bg-gray-900 bg-opacity-50"></div>
                <div data-aos="flip-down" class="absolute inset-0  z-30 container flex flex-col items-center justify-center h-full max-w-6xl pl-0 mx-auto  sm:pl-8 xl:pl-0 md:flex-row md:justify-between">
                    <div class="flex flex-col items-center justify-center mx-auto">
                        <div class="relative text-center ">
                            <h1 class="text-white relative mb-4 text-6xl font-bold font-sans italic leading-none text-center lg:text-9xl xl:text-9xl"> MY HERO<br><span class="text-red-500">SECTION</span></h1>
                            <p class="text-gray-400 text-sm lg:text-4xl lg:text-center font-sans italic">Semoga Bermanfaat Untuk Semua
                            </p>
                            
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!-- HERO SECTION END -->


<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
    <script>
        AOS.init({
            offset:100,
            duration :1000
        });
    </script>
    <script>
        if( document.getElementById('nav-mobile-btn') ){
            document.getElementById('nav-mobile-btn').addEventListener('click', function(){
                if( this.classList.contains('close') ){
                    document.getElementById('nav').classList.add('hidden');
                    this.classList.remove('close');
                } else {
                    document.getElementById('nav').classList.remove('hidden');
                    this.classList.add('close');
                }
            });
        }
    </script>
</body>
</html>

How to create a Hero Section with Tailwind CSS?

Install tailwind css of verion 2.0.3

Use the script html tag to import the script of Tailwind CSS of the version 2.0.3

<script src="https://cdn.tailwindcss.com"></script>

All the unility class needed to create a Hero Section component

  • w-full
  • z-30
  • relative
  • w-screen
  • h-screen
  • h-full
  • absolute
  • z-40
  • flex
  • px-8
  • z-20
  • h-24
  • pt-2
  • w-auto
  • h-12
  • text-white
  • top-0
  • left-0
  • hidden
  • block
  • mt-20
  • border-b
  • border-gray-200
  • sm:border-none
  • sm:px-5
  • sm:block
  • sm:relative
  • sm:mt-0
  • sm:px-0
  • sm:w-auto
  • flex-col
  • py-3
  • bg-red-500
  • sm:flex-row
  • sm:bg-transparent
  • sm:py-0
  • px-1
  • mb-1
  • mb-5
  • mr-0
  • text-base
  • sm:mb-0
  • sm:mr-4
  • lg:mr-8
  • right-0
  • z-50
  • w-6
  • mt-8
  • mr-10
  • sm:hidden
  • sm:mt-10
  • h-1
  • mt-2
  • bg-white
  • sm:mt-1
  • mt-1
  • bg-gray-900
  • bg-opacity-50
  • max-w-6xl
  • pl-0
  • mx-auto
  • sm:pl-8
  • xl:pl-0
  • md:flex-row
  • text-center
  • mb-4
  • text-6xl
  • lg:text-9xl
  • xl:text-9xl
  • text-red-500
  • text-gray-400
  • text-sm
  • lg:text-4xl
  • lg:text-center

74 steps to create a Hero Section component with Tailwind CSS

  1. Use w-full to set an element to a 100% based width.

  2. Control the stack order (or three-dimensional positioning) of an element to 30 in Tailwind, regardless of order it has been displayed, using the z-30 utilities.

  3. Use relative to position an element according to the normal flow of the document.

  4. Use w-screen to make an element span the entire width of the viewport.

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

  6. Use h-full to set an element’s height to 100% of its parent, as long as the parent has a defined height.

  7. Use absolute to position an element outside of the normal flow of the document, causing neighboring elements to act as if the element doesn’t exist.

  8. Control the stack order (or three-dimensional positioning) of an element to 40 in Tailwind, regardless of order it has been displayed, using the z-40 utilities.

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

  10. Control the horizontal padding of an element to 2rem using the px-8 utilities.

  11. Control the stack order (or three-dimensional positioning) of an element to 20 in Tailwind, regardless of order it has been displayed, using the z-20 utilities.

  12. Use h-24 to set an element to a fixed height(6rem).

  13. Control the padding on top side of an element to 0.5rem using the pt-2 utilities.

  14. The w-auto utility can be useful if you need to remove an element’s assigned width under a specific condition, like at a particular breakpoint.

  15. Use h-12 to set an element to a fixed height(3rem).

  16. Control the text color of an element to white using the text-white utilities.

  17. Use the top-0 utilities to set the top position of a positioned element to 0rem.

  18. Use the left-0 utilities to set the left position of a positioned element to 0rem.

  19. Use hidden to set an element to display: none and remove it from the page layout.

  20. Use inline utilities to put the element on its own line and fill its parent.

  21. Control the margin on top side of an element to 5rem using the mt-20 utilities.

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

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

  24. Control the border color of an element to none using the sm:border-none utilities at only small screen sizes.

  25. Control the horizontal padding of an element to 1.25rem at only small screen sizes using the sm:px-5 utilities.

  26. Use inline utilities to put the element on its own line and fill its parent at only small screen sizes.

  27. Use relative to position an element according to the normal flow of the document at only small screen sizes.

  28. Control the margin on top side of an element to 0rem at only small screen sizes using the sm:mt-0 utilities.

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

  30. The w-auto utility can be useful if you need to remove an element’s assigned width under a specific condition, like at a particular breakpoint.

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

  32. Control the vertical padding of an element to 0.75rem using the py-3 utilities.

  33. Control the background color of an element to red-500 using the bg-red-500 utilities.

  34. Use flex to create a block-level flex container at only small screen sizes.

  35. Control the background color of an element to transparent using the sm:bg-transparent utilities at only small screen sizes.

  36. Control the vertical padding of an element to 0rem at only small screen sizes using the sm:py-0 utilities.

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

  38. Control the margin on bottom side of an element to 0.25rem using the mb-1 utilities.

  39. Control the margin on bottom side of an element to 1.25rem using the mb-5 utilities.

  40. Control the margin on right side of an element to 0rem using the mr-0 utilities.

  41. Control the text color of an element to base using the text-base utilities.

  42. Control the margin on bottom side of an element to 0rem at only small screen sizes using the sm:mb-0 utilities.

  43. Control the margin on right side of an element to 1rem at only small screen sizes using the sm:mr-4 utilities.

  44. Control the margin on right side of an element to 2rem at only large screen sizes using the lg:mr-8 utilities.

  45. Use the right-0 utilities to set the right position of a positioned element to 0rem.

  46. Control the stack order (or three-dimensional positioning) of an element to 50 in Tailwind, regardless of order it has been displayed, using the z-50 utilities.

  47. Use w-6 to set an element to a fixed width(1.5rem).

  48. Control the margin on top side of an element to 2rem using the mt-8 utilities.

  49. Control the margin on right side of an element to 2.5rem using the mr-10 utilities.

  50. Use hidden to set an element to display: none and remove it from the page layout at only small screen sizes.

  51. Control the margin on top side of an element to 2.5rem at only small screen sizes using the sm:mt-10 utilities.

  52. Use h-1 to set an element to a fixed height(0.25rem).

  53. Control the margin on top side of an element to 0.5rem using the mt-2 utilities.

  54. Control the background color of an element to white using the bg-white utilities.

  55. Control the margin on top side of an element to 0.25rem at only small screen sizes using the sm:mt-1 utilities.

  56. Control the margin on top side of an element to 0.25rem using the mt-1 utilities.

  57. Control the background color of an element to gray-900 using the bg-gray-900 utilities.

  58. Control the background color of an element to opacity-50 using the bg-opacity-50 utilities.

  59. Set the maximum width/height of an element using the max-w-6xl utilities.

  60. Set the left padding of the element to 0rem using the pl-0 utilities class

  61. Control the horizontal margin of an element to auto using the mx-auto utilities.

  62. Set the left padding of the element to 2rem at only small screen sizes using the sm:pl-8 utilities class

  63. Set the left padding of the element to 0rem at only extremely large screen sizes using the xl:pl-0 utilities class

  64. Use flex to create a block-level flex container at only medium screen sizes.

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

  66. Control the margin on bottom side of an element to 1rem using the mb-4 utilities.

  67. Control the text color of an element to 6xl using the text-6xl utilities.

  68. Control the text color of an element to 9xl at only large screen sizes using the lg:text-9xl utilities.

  69. Control the text color of an element to 9xl at only extremely large screen sizes using the xl:text-9xl utilities.

  70. Control the text color of an element to red-500 using the text-red-500 utilities.

  71. Control the text color of an element to gray-400 using the text-gray-400 utilities.

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

  73. Control the text color of an element to 4xl at only large screen sizes using the lg:text-4xl utilities.

  74. Control the text color of an element to center at only large screen sizes using the lg:text-center utilities.

Conclusion

The above is a step-by-step tutorial on how to use Tailwind CSS to create a Hero Section components, learn and follow along to implement your own components.