|
I got an idea, why don't you put a style code for image placeholder and name it like "blah" at the<head></head> part of the page...
<head>
<style>
.blah {
width:300px;
height:300px;
}
</style>
</head>
How about it, eh?...
and when you want an image to have those property just use it as a class name...
<img class="blah" src="something.jpg" alt="will this help?" />
Last edited by chrishirst; 03-12-2009 at 04:40 AM..
Reason: merged
|