lighthouseで「Form elements do not have associated labels」の修正方法
2933 ワード
事象
修正方法
修正前
<input type="text">
修正後
<input type="text" ariaLabel="lable">
or
<label htmlFor="promo">label</label>
<input id="promo" type="text">
参考URL
Author And Source
この問題について(lighthouseで「Form elements do not have associated labels」の修正方法), 我々は、より多くの情報をここで見つけました https://zenn.dev/damono999/articles/f41d51048ef268著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol