Underlined text gets crossed in firefox [closed]

2019-09-24 09:58发布

Underlined in post text gets crossed in firefox. Css says underlined, and all the other browsers are fine. Just firefox

Link here http://soloveich.com/pr6/acupuncture/

At the bottom of the page.

2条回答
Anthone
2楼-- · 2019-09-24 10:42

Instead of using span tag please use inline css in anchor tag. like below mentioned; And it will solve the problem. The other solution written above will double the underline which looks more awkward.

here you can use the code.

<a href="?page_id=228"style="font-size: x-large; text-decoration: underline; 
color:#888888;vertical-align:bottom;"><span >Photos:</span>
</a>"

Regards, Kheema

查看更多
在下西门庆
3楼-- · 2019-09-24 10:53

Please use this code on your photo's text tag <span style="font-size: x-large; text-decoration: underline;">Photos:</span> and avoid the above span tag's text-decoration ...

OR

please remove/change to *{vertical-align:bottom;} instead of *{vertical-align:top;}

It will be work fine !!!

查看更多
登录 后发表回答