|
i want to be able to move that image around within the td cell. using up,down,left,right arrow. however in ie the image will not vertical-align:top; or vertical-align:bottom. the javascript is seems to be changing the style attribute with the page,but the picture is not moving
<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<table>
<tr><td style="border:1px solid blue;width:200px;height:200px;vertical-align:top;text-align:center" >
<img src="movable_image.png">
</td></tr>
</table>
</body>
</html>
|