Cadilac
Cadilac

Reputation: 1100

Another round with overflow:auto in IE

My image has too big width.

<table>
    <tbody>
        <tr>    
            <td style="max-width: 800px; overflow-x: auto; position: relative">
                <img style="position: relative" width="1086" height="756" src="my_picture.jpg" id="cropbox" alt="" />
            </td>
        </tr>
    </tbody>
</table>
</body>

How can i fix this problem?

Upvotes: 0

Views: 41

Answers (1)

Moin Zaman
Moin Zaman

Reputation: 25445

if you want to clip the image, change overflow-x to hidden

if you want the image to fit the cell change the image width to 100%

Upvotes: 1

Related Questions