![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Here's a more complete description. The table on my page ( http://www.smoothcoding.com/debug/bubble.html ) is basically a "bubble chart." All the cells containing bubbles should be square. (FWIW, they are square in Firefox.) If I go to this page in Internet Explorer, the cells containing bubbles are about 3 times their expected width. HOWEVER, if I force the page to redraw by zooming in and out or by going back/forward in the history and returning to that page, the cells become square as expected. [...] Try adding |
#3
| |||
| |||
|
|
francais31415 (AT) gmail (DOT) com wrote: Here's a more complete description. The table on my page ( http://www.smoothcoding.com/debug/bubble.html ) is basically a "bubble chart." All the cells containing bubbles should be square. (FWIW, they are square in Firefox.) If I go to this page in Internet Explorer, the cells containing bubbles are about 3 times their expected width. HOWEVER, if I force the page to redraw by zooming in and out or by going back/forward in the history and returning to that page, the cells become square as expected. [...] Try adding body { font-size: 100%; } Adding both a foreground and background color is a good idea as well. |
#4
| |||
| |||
|
|
Here's a more complete description. The table on my page ( http://www.smoothcoding.com/debug/bubble.html ) is basically a "bubble chart." [...] Thanks for your reply. Unfortunately, that doesn't seem to fix it. Any other thoughts? I also tried adding body { width: 100%; }. It is the use in CSS of width and height to adjust the size of the |
#5
| |||
| |||
|
|
It is the use in CSS of width and height to adjust the size of the image. While it should work, and does in non-IE browsers, IE gets lost doing all that business of scaling images and adjusting the size of table cells. It's such hard and complicated work! You will have more stable results using the width and height attributes of <img> directly rather than scaling it with CSS. Vertical bars of different heights would be easier to manipulate than circles, and display better. The width is always the same, easy to center. |
#6
| |||
| |||
|
|
It is the use in CSS of width and height to adjust the size of the image. While it should work, and does in non-IE browsers, IE gets lost doing all that business of scaling images and adjusting the size of table cells. It's such hard and complicated work! You will have more stable results using the width and height attributes of <img> directly rather than scaling it with CSS. Vertical bars of different heights would be easier to manipulate than circles, and display better. The width is always the same, easy to center. |
#7
| |||
| |||
|
|
It is the use in CSS of width and height to adjust the size of the image. While it should work, and does in non-IE browsers, IE gets lost doing all that business of scaling images and adjusting the size of table cells. It's such hard and complicated work! You will have more stable results using the width and height attributes of <img> directly rather than scaling it with CSS. Vertical bars of different heights would be easier to manipulate than circles, and display better. The width is always the same, easy to center. |
#8
| |||
| |||
|
![]() |
| Thread Tools | |
| Display Modes | |
| |