Is there any way to shrink images using div tags whilst making a web page?

Mr. Black

New member
Hullo, I have an animated .gif file that is too big for the area it needs to go in, and I'd shrink it using photo software, only the only thing on this PC that would do it is Flash CS3, and the output quality of it is horrible.

Say the image is 300 pixels wide. Can I put the image on the site using div tags/another method to shrink it to 150 pixels?

Cheers!
 
<img src=yourgif.gif" style="height:300px;width:300px">

<img src="yourgif.gif" height="50%">

wrapping it in a div won't work unless you wanted to keep the origianl size but only have a certain area of it visible.
 
<img src=yourgif.gif" style="height:300px;width:300px">

<img src="yourgif.gif" height="50%">

wrapping it in a div won't work unless you wanted to keep the origianl size but only have a certain area of it visible.
 
Back
Top