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

  • @miporins

    Submitted

    Hello! I've been a bit slow on my practices, but here's another simple and fast project to catch up the rhythm, it was fun!

    Any feedbacks are mostly welcome, thank you!

    IT_Taras 100

    @LotusElize

    Posted

    Great job, you worked really well with the styles and the design is beautifully reflected on the page!

    1
  • IT_Taras 100

    @LotusElize

    Posted

    If possible, a few suggestions 0 - )

    It's not a good idea to apply a border-radius of 50% to all the images on the page. This will give a rounded shape to all the images, which may not be the desired outcome. It would be better to selectively apply the border-radius using pseudo-classes or classes to specific images.

    Using pseudo-classes or classes to target specific images would be a more accurate and appropriate approach.

    Good practice is to use styling based on classes instead of IDs whenever possible.

    Here are a few reasons why it's better to avoid extensive use of styling based on IDs:

    1.Uniqueness: IDs should be unique on a page, so using them for styling limits your ability to reuse styles on other elements.

    2.Specificity: Styling based on IDs has a high level of specificity, which can make managing styles and dealing with conflicts more complex, especially in larger and more complex projects.

    3.Refactoring: If you change the ID of an element in the HTML, you would also need to update the styles associated with that ID. This can create extra work and potential errors.

    Instead, it is recommended to use styling based on classes, as they allow for more flexibility and reusability. Classes can be applied to multiple elements, making the code modular and easier to manage.

    It's important to note that there are situations where using IDs makes sense, such as for internal anchor links on a page. However, in general, it's better to avoid extensive styling based on IDs and use classes for styling elements.

    Thank you, and have a great day!!)

    Marked as helpful

    0