php - <a> doesn't wrap span, and appears as text -
i've used <a></a>
tag inside php file. looks so:
<а href="https://play.google.com/store/apps/details?id=org.imperialhero.android"> <span class="qr-wrapper"></span> </a>
however, when rendered html on page, span
within displayed (and outside of anchor element), while anchor "seen" text , displayed so.
why link interpreted text? , why closing </a>
missing?
your anchor tag seems not "a", different symbol looks a. not sure though. replace should work.
<a href="https://play.google.com/store/apps/details?id=org.imperialhero.android"> <span class="qr-wrapper"></span> </a>
in comparision, yours:
<а href="https://play.google.com/store/apps/details?id=org.imperialhero.android"> <span class="qr-wrapper"></span> </a>
Comments
Post a Comment