Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

there's some problem with css with v17. Strobotics.com bottom left pictures gradually slip down. No problem with v16, IE, Chrome

  • 3 odpovede
  • 1 má tento problém
  • 9 zobrazení
  • Posledná odpoveď od cor-el

more options

Please see strobotics.com, bottom left. The three pictures displayed fine with V16 and also fine with IE all versions and Chrome. But sine V17 the pictures are slipping down. The css div is just a single field tile15. I put a table in there with 3 MAPs with only 1 entry each. The 3 pics are supposed to show through the mask specified in a second use of tile15 css div. The mask is correct but the 3 pics are staggered downwards. I probably should use more css and not be lazy with the table but why now at V17? This is not a problem with my PC or OS. It shows the same problem in any PC running V17. Obviously I can go back to V16 but what about all the users out there?

Please see strobotics.com, bottom left. The three pictures displayed fine with V16 and also fine with IE all versions and Chrome. But sine V17 the pictures are slipping down. The css div is just a single field tile15. I put a table in there with 3 MAPs with only 1 entry each. The 3 pics are supposed to show through the mask specified in a second use of tile15 css div. The mask is correct but the 3 pics are staggered downwards. I probably should use more css and not be lazy with the table but why now at V17? This is not a problem with my PC or OS. It shows the same problem in any PC running V17. Obviously I can go back to V16 but what about all the users out there?

Vybrané riešenie

awesome answer! worked right away. Many many thanks for your time and kind attention. Yes I will join the mozillaline forum.

Čítať túto odpoveď v kontexte 👍 0

Všetky odpovede (3)

more options

A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.

The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.


This can be caused by placing the images within the MAP tags.
If you inspect the page source then you see the img tags marked in red.

Placing them as the last-child in the TD container with the DOM Inspector works for me.

<tr>
  <td width=22></td>
  <td bgcolor=#a0a0a0>
    <map name="VidNav1">
      <area shape="rect" coords="0, 0, 150, 120" title="R12 handling glass test tubes" href="http://" >
    </map>
    <img id="menup1"src="testtubes.jpg" usemap="#VidNav1" border="0" hspace="0" vspace="1" alt="video" >
  </td>
</tr>
more options

Vybrané riešenie

awesome answer! worked right away. Many many thanks for your time and kind attention. Yes I will join the mozillaline forum.