One of our web developers uses the following html as a placeholder for styling a drop down list.
<a href="" class="arrow"></a>
Is this considered anchor tag valid?
Since there is no href value, it shows up as broken on some of our link checker reports.
It is valid.
However, standard practice is to use href="#"
or sometimes href="javascript:;"
.