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.

enter image description here

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

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -