Cute Blinking Unicorn

프론트엔드/HTML

html 로그인 디자인

민밥통 2024. 2. 5. 15:28
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="index.css">
  <title>Document</title>
</head>
<body>
  <div class="field">
    <input type="text" id="username" placeholder="..." />
    <label for="username">username</label>
  </div>
</body>
</html>

 

css

.field {
  position: relative;
}
.field input {
  color: #565656;
  background: none;
  padding: 0.625rem;
  border: 2px solid #030104;
}
.field label{
  position: absolute;
  top: 0;
  left: 0;
  translate: 0.625rem 0.625rem;
  color:#030104;
  background-color: #efe4f7;
  padding-inline: 0.25rem;
  border: 2px solid transparent;
  pointer-events: none;
  transition: translate 250ms, background-color 250ms, border-color 250ms;
}
.field:focus-within label,
.field:not(:has(:placeholder-shown))
label {
  translate: 0.625rem -1rem;
  border-color: #030104;
}
.field ::placeholder {
  color: transparent;
}