Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码,它在所有浏览器中都可以使用,除了 mozilla,它只显示图像的 alt... 有什么问题?
<a href="mmm.html" > <img src="img\rounded\m1.png" alt="m1" width= "10%" height= "30%"/> </a>
错误的字符。尝试:
<a href="mmm.html" > <img src="img/rounded/m1.png" alt="m1" width= "10%" height= "30%"/> </a>
注意src的路径。您应该使用“/”而不是“\”。