HTML codes! sizing images! help please?

  • Thread starter Thread starter ~Jessica~
  • Start date Start date
J

~Jessica~

Guest
okay, I need an HTML code for sizing multiple images. icons mainly.... but more than one in an area. I am doing this on Piczo, so yeah ^__^

something like:
<IMG SRC="PIC.gif" WIDTH=105 HEIGHT=97 ALT="icon">
 
if you need to have more then one image resized to the same size use a CSS style

<style>
img
{
width:105px; height:97px;
}
</style>

but that will change the size of every single img so you would probably want to make css classes

<style>
.IconStyle //Notice the . before IconStyle
{
width:105px; height:97px;
}
</style>

and in the img tag like this <img src="pic.gif" class="IconStyle">
for any image you need to be that particular size (make new classes if you need other ones different sizes and put the name of it the class="" part
 
Back
Top