Problem with CSS overflow

K

Kelly59

I expected the following to show a clipped image with scrollbars - the image
was indeed clipped but the scrollbars are not shown. What am I doing wrong ?

<img
src="my_image.jpg"
alt="some text"
style="position:absolute; left 100px; top:100px; clip:rect(0 200 200 0);
overflow:scroll"
 
J

Jens Peter Karlsen [FP-MVP]

Images don't have scrollbars.
To accomplish what you want use a DIV where you place the picture .

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Top