html不顯示下劃線?
你的問題很有可能是你的樣式表定義去掉了下劃線。可以在需要加下劃線的地方加上style="text-decoration:underline;",如:
<a href="鏈接地址" style="text-decoration:underline;">鏈接文字</a>
<span style="text-decoration:underline;">普通文字</a>
如果還不行就再加個!important
<a href="鏈接地址" style="text-decoration:underline!important;">鏈接文字</a>
<span style="text-decoration:underline!important;">普通文字</a>