Menu
Coddy logo textTech

Form Wrapper class

Lesson 10 of 19 in Coddy's Netflix Sign-in Page Clone | Front-end project course.

challenge icon

Challenge

Easy

Target class form-wrapper:

  1. Set the position to absolute. Also, 55% from the top and 50% from the left.
  2. Set transform to translate (-50%, -50%) (as below):

    transform: translate(-50%, -50%);

  3. Set a width of 450 pixels.
  4. Set a padding of 90 pixels.

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

All lessons in Netflix Sign-in Page Clone | Front-end project