Junior UI/UX Designer

PixelPerfect Inc.

Part-time
Remote

About the Role

PixelPerfect is looking for a creative Junior UI/UX Designer to assist our design team. You will help create wireframes, mockups, and prototypes for our suite of mobile and web applications, ensuring a user-centric approach.

Skills & Requirements

Figma
Sketch
Adobe XD
User Research
Prototyping

Coding Challenge

CSS Centering Challenge

Using only CSS, write the necessary styles to perfectly center the child `div` within the parent `div` both horizontally and vertically.

<style>
  .parent {
    width: 300px;
    height: 300px;
    background-color: #eee;
    /* parent styles here */
  }

  .child {
    width: 100px;
    height: 100px;
    background-color: #87CEEB;
    /* child styles here */
  }
</style>

<div class="parent">
  <div class="child"></div>
</div>