James A. Donald:[color=blue][color=green]
> > I can easily put the image on the right hand side in strict for
> > example telling it to float right, but the text does not flow around
> > the image.[/color][/color]
On Thu, 01 Sep 2005 06:54:12 GMT, Spartanicus[color=blue]
> Then you've made a mistake somewhere.[/color]
example:
The following works, but is not strict because of the image has the
attribute align=right (among other things)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Test</h1>
<p><a href="http://www.jim.com/tolerati.htm">Letter
concerning toleration. </a><a
href="http://www.jim.com/tolerati.htm"><img
src="locket.jpg" alt="Locke" align="right"
height="85" width="75"></a>
<P>John Locke argues
that religious persecution is not caused
by differing concepts of the good, but by simple
old fashioned evil - one group seeks power and wealth by using
organized violence to rob and subjugate another group,
same as any other group conflict.
</body>
</html>
The following does not work at all (style="text-align: right;"),
perhaps because an image is not text.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Test</h1>
<p><a href="http://www.jim.com/tolerati.htm">Letter
concerning toleration. </a><a
href="http://www.jim.com/tolerati.htm"><img
src="locket.jpg" alt="Locke" style="text-align: right;"
height="85" width="75"></a>
<P>John Locke argues
that religious persecution is not caused
by differing concepts of the good, but by simple
old fashioned evil - one group seeks power and wealth by using
organized violence to rob and subjugate another group,
same as any other group conflict.
</body>
</html>
I would like it to look like the transitional does - where the text
flows around the right aligned image.
--
http://www.jim.com