次のログインフォームがあります。
div.field {
position: relative;
}
label {
font-size: 14px;
position: absolute;
top: 20px;
left: 3px;
}
<div class="username field">
<label for="username">Enter email</label><br />
<input type="text" class="field" name="email" id="id_email">
</div>
<div class="password field">
<label for="password">Enter password</label><br />
<input type="password" class="field" name="password" id="id_password">
</div>
現在、ユーザーがラベル テキストのある場所をクリックしても何も起こりません (つまり、ユーザーはテキスト入力ではなくラベル テキストをクリックしているため)。ラベル テキストをテキスト入力に含めたいのですが、ユーザーがテキスト入力フィールドをクリックすると、ラベル テキストは無視されます。どうすればこれを達成できますか?