| Sometimes you want to add one particular image to various webpages, but you want each instance of the image to be a different size. Here is a quick and easy method of doing that using CSS. To your style sheet in your <head> area, include the following classes. Modify the width and heights to your own specifications.
To the specific images that you wish to resize add the applicable class id as illustrated below.
<img class="regular" src="http://pattayacitythailand.com/image/logo.gif" width="260" height="60"> <img class="larger" src="http://pattayacitythailand.com/image/logo.gif" width="300" height="70"> <img class="smaller" src="http://pattayacitythailand.com/image/logo.gif" width="150" height="30">
|