Chrome を除くすべてのブラウザーで機能するフォームがありますが、何らかの理由で Chrome ではクリックしてフォーム フィールドに入力できません。フォームは次のとおりです。
<form action="registration.php" method="post">
<fieldset>
<p style="color:red; font-weight:bold; font-size:14px;"> <?php echo $errorMsg; ?> </p>
<label style="margin-bottom:10px" for="username">Username</label>
<input style="margin-bottom:10px"name="username" id="username" value="<?php print $username; ?>" type="text" />
<label style="margin-bottom:10px" for="email">Email</label>
<input style="margin-bottom:10px" name="email" id="email" value="<?php print $email; ?>" type="text" />
<label style="margin-bottom:10px" for="emailconf">Confirm Email</label>
<input style="margin-bottom:10px" name="emailconf" id="emailconf" value="<?php print $emailconf; ?>" type="text" />
<label style="margin-bottom:10px" for="paypal">PayPal Email</label>
<input style="margin-bottom:10px" name="paypal" id="paypal" value="<?php print $paypal; ?>" type="text" />
<label style="margin-bottom:10px" for="pass">Password</label>
<input style="margin-bottom:10px" type="password" value="<?php print $pass; ?>" name="pass" id="pass" onkeyup="passwordStrength(this.value)" />
<label style="margin-bottom:10px" for="passwordconf">Confirm Password</label>
<input style="margin-bottom:10px" name="passwordconf" id="passwordconf" value="<?php print $passwordconf; ?>" type="password" />
<div style="height:35; color:black;" id="passwordDescription">Password not entered</div>
<div id="passwordStrength" class="strength0"></div>
</fieldset>
<input style="float:right; margin-right:45%;" id="SaveAccount" type="submit" class="loginbtn" value="Submit Form"/>
</form>
php print は、エラーが発生した場合に情報を再入力する必要がないため、私が知る限り、無視することができます。クロムがこのように動作する理由はありますか? 私は決してフォームの達人ではありませんが、過去に同じ方法でいくつか作成したことがあり、以前は機能していました。