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

  • @amirandersonjones

    Posted

    I'm pretty new to coding in general, but I would like to improve your design you could remove the border from the button by selecting it. Also, adding some padding to the buttons could help improve them because they look skewed. you could add padding by going in a clockwise direction i.e. top, right, bottom, left . The shorthand would be the top and bottom for the first number and left and right second number.

    button{ border: none; padding: 5px 10px 5px 10px; padding: 5px 10px; }

    Marked as helpful

    0