inputs
Floating Label Input
라이브 미리보기새 탭에서 열기 ↗
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>floating-label-input</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="input-group">
<input required="" type="text" name="text" autocomplete="off" class="input">
<label class="user-label">First Name</label>
</div>
</body>
</html>