Quote:
Originally Posted by jayleavitt
Wrap each image in that div, or will a whole body wrap work?
|
??
Body wrap??
Do you mean:
<body><img alt="" src=""/></body>
Or
<body><img alt="" src=""/><img alt="" src=""/><img alt="" src=""/></body>
You usually want to have each image wrapped in a container - in this case a <div>. This will provide the easiest, most consistent way of presenting your work.
You can even make a clip of it and its really easy to add.
<body>
<div><img alt="" src=""/></div>
<div><img alt="" src=""/></div>
<div><img alt="" src=""/></div>
<div><img alt="" src=""/></div>
</body>