[thelist] Web Picture Frames

Seth Bienek - Web Consultant sbienek at acep.org
Mon Jul 10 12:46:37 CDT 2000


> Yes, but I also read something that this is a new
> design technique that almost looks like a poster with
> a matting?

You mean like:

<table cellspacing="0" cellpadding="10" border="0" bgcolor="#000000">
  <tr>
    <td><img src="myimage.jpg" width="x" height="x" alt=""></td>
  </tr>
</table>

You could also do this in CSS.

In your style sheet:

img.MattedImage{
	background-color : #000000;
	padding-bottom : 10px;
	padding-left : 10px;
	padding-right : 10px;
	padding-top : 10px;
}

Then in your document:
<img src="myimage.jpg" width="x" height="x" alt="" class="MattedImage">

I dunno how hi-tech it is, but this would certainly do what you're
describing.  Somebody slap my hand if I'm wrong here.  :)

Seth






More information about the thelist mailing list