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

  • Aziz Prabowo• 220

    @azizp128

    Posted

    Hi Fazza, congratulations for your solution!

    Your solution seems fine, but you have a problem with the responsive display. Your solution is good for desktop display but will change completely when the screen is resized. Maybe you can learn more about responsive displays. In addition, your CSS code also has many same properties that are written repeatedly, you can use the grouping technique to select HTML elements with the same style definitions as below.

    .fa-facebook,
    .fa-twitter,
    .fa-instagram{
       border-radius: 50%;
       border-color: white;
       border-style: solid;
       border-width: 1px;
       padding: 7px 10px 5px 10px;
       margin-right: 10px;
    } 
    

    Marked as helpful

    0