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

  • @Oluwafemi21

    Posted

    The only two things I noticed are the button style and the background color of the button when pressed. The submit button should have a border:none and the background-color of the 1-5 ratings should be grey and the hover color should be orange

    Marked as helpful

    0
  • MrNomis 40

    @MrNomis

    Submitted

    So this is just a beginners Project but i´m still not quite sure how to center something properly. In my desktop Version i hat to work with marings to center it horizontally which i think is not the best option for different screen sizes.....

    so if anyone can help me with that would be appreciated.

    @Oluwafemi21

    Posted

    To center things there are several ways. But the best two I can recommend is using flex and grid. The code for using flex goes thus display:flex; align-items:center; and justify-content:center; this would be the styling of the body element, since you want to center all your items in the middle of the page. same goes for the grid property display:grid; place-items:center; and if you haven't learnt either flex or grid i implore you to learn it.

    0
  • Staniuu 260

    @St4niuu

    Submitted

    Hi again! My next project's here. I am still getting better and better in js and CSS. What thing I've noticed is that when I zoom my website I don't have scrolls to move up or left. Kind of the certain part of site's just disappearing. What can I do with it? I have no idea. Thanks in advance

    @Oluwafemi21

    Posted

    If you're looking for scrolls, it's either you have an overflow hidden or you set the height of the body to 100vh which is fixed. solution to the problem: change the height to min-height and set it 100vh. Your mobile view needs to be stacked on each other, if you're using flex for the calculator change the flex direction to column on the 375px media query. Also make sure the calculator doesn't show infinity when there is an error. Good job so far!.

    Marked as helpful

    0