开发者

Why does IE7 move DOM elements on mouseover?

So I have a table with only two columns and one row. The second td holds an image, and the first holds text. I would like the td containing the image to be at the minimum size possible with that image inside, and the first td to fill the remaining space. The following works in every browser except IE7 (we are not doing IE6):

<table> <tr><td style="width:100%;">TEXT</td><td><img src="jpg" alt="jpg" /></td></tr> </table>

What happens is this: The page renders correctly, then when you mouse over the table开发者_开发百科, the first td expands to fill the entire table, pushing the image off the edge.

I could fix this with some jQuery to measure the width of the image and calculate remainder for the first td; but that solution is full of LAME!

Please help. I do not understand why IE7 feels the need to redraw the way it does.


Try the following code instead. Instead of explicitly declaring too much width, try explicitly declaring too little (because the image will push the width beyond 1% anyway.)

I am writing this off the top of my head without actually having looked in IE7, but I have IE7 in a Virtual Machine at home and so I'll comment back later if I find a different solution.

<table style="width: 100%;" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>TEXT</td>
<td width="1%" style="width: 1%;"><img src="http://www.google.com/intl/en_com/images/srpr/logo2w.png" alt="Google Logo" /></td>
</tr>
</table>


There are a couple of things that you could try:

  1. Make sure you're using a reset.css stylesheet to reset all of the browser defaults and accommodate any browser quirks. That's especially important with Internet Explorer.
  2. Only use tables for tabular data — I'm not sure what the rest of your table contains, but unless there's going to be rows of data, it would be much easier to use a container div with a p and img floated.
  3. Set the width and height on the img.
  4. Use CSS position: relative; float: left; to see if it helps with positioning issues on hover. I see hover issues a lot with jQuery scripts and browser hacks like CSS3 PIE — if you're using those, try removing them.


Try setting the style="zoom:1" on the element.


I am not sure but looking at

<table> <tr><td style="width:100%;">TEXT</td><td><img src="jpg" alt="jpg" /></td></tr> </table>

from what I can see is that there is no table width on this, so IE does not know how to scale the td appropriately.

Another guess is because you're are declaring width as 100% on the first one IE interprets this to shove it off. Which is my guess, you can not have a width of 100% on the first cell because it means to take up 100% of the full table width.


clear you browser cache, specify a width and height on your image

i have seen the most weird stuff on ie7, like pagebreaks \n and such causing this effect, ie:

<a href="#>
<img src="jpg" />
</a>

to fix just put everything on the same line and without spaces (like your table with a space on the right)

also avoid using inline style, use a stylesheet (css)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜