Is it standard to use Hyperlink(a tag) within label tag?

末鹿安然 提交于 2020-01-01 23:32:30

问题


Is it standard to use Hyperlink(a tag) within label tag ?

<label for="ContentPlaceHolder1"><a href="~/address">Link Text and Label Name</a></label>

回答1:


It is valid to have an anchor inside a label — in HTML 4.01 as well as HTML5.

You can try out the W3C Markup Validator to quickly check if your markup is valid.

Whether it makes sense is another question. It is probably ok to have a link alongside with some non-link-text inside a label, but a label consisting of a single link probably won't be a great user experience.



来源:https://stackoverflow.com/questions/17964418/is-it-standard-to-use-hyperlinka-tag-within-label-tag

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!