I want to do input's in the center. Her it is the code:
.input-container{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center
}
<!DOCTYPE html>
<html>
<head>
<script src="/webcam.js"></script>
<link rel="stylesheet" type="text/css" href="/CSS.css">
</head>
<body class="body">
<div class="input-container">
<input class="login" placeholder="login">
<input class="password" placeholder="password">
</div>
</body>
</html>
But you can not do it in the center. But in theory it should. What could be the problem. Thank you for your time!