html - Why I can't see this immages using img tag in FireFox? -


i not confident html , css , have following problem.

into table have this:

<td style="border-bottom: 1px solid #76818a !important;  width: 10px; text-align: center; padding: 0 !important;">      <div style="width: 90px;">          <img alt="su" src="img\freccia_up.gif"              onclick="javascript: spostasu();"> <br>           <img             alt="giu" src="img\freccia_down.gif"             onclick="javascript: spostagiu();"> <br> <br> <br>          <img alt="nascondi" src="img\freccia_dx.gif"              onclick="javascript: eliminacolonna()"> <br> <img             alt="visualizza" src="img\freccia_sn.gif"             onclick="javascript: aggiungicolonna()">      </div>  </td> 

as can see show .gif immages stored img path of project.

the problem using explorer , chrom works fine (these immages correctly showd page) using firefox immages not rendered , instead these immages showed value of related alt attribute of tag.

why have behavior? can try solve , correctly show these immages using firefox?

tnx

the problem maybe firefox itself. try following.

https://support.mozilla.org/en-us/kb/fix-problems-images-not-show


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -