Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • sansarj17• 180

    @sansarj17

    Submitted

    Hello everyone, it's going good but I mainly face difficulties while centering the whole component according to the webpage. If someone can help me through it, it will be of great help. Moreover, how to get the active states part, I seem to complete the CSS but I can't get to activate when I hover above it? Any ideas on how it might be done?

    Mehdi Adham• 140

    @mehdi-adham

    Posted

    Hi SANSARJ17’S , a few things you should pay attention to

    • Use Semantics HTML like <main class="container"> instead <div class="container">

    • Using h1 on page for title

    • use relative units such as vh for height like min-height:100vh; for and display:flex:

    body{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
    

    I hope helpfull for you And Happy coding! ;) Keep Going

    Marked as helpful

    2