akella wrote:
http://www.champion.com.ua/ or here http://pravda.com.ua/
The problem is: How to implement it with CSS so that text will not be
under the image. The obvious img{float:left} is not good - client
dont want the text to be displayed under the image.
This solution imitates parts of a table-layout:
<div class="container">
<img ... style="float: left; /* or float: right; */" />
<div style="display: table; _height: 0 /* for IE-win */;">
<h3>some heading</h3>
<p>some text........</p>
<p>maybe some more text...</p>
</div>
</div>
Does work in Opera 8, Firefox 1.0, Safari 1.2.4 & IE/win. Not sure about
IE/Mac.
regards
Georg
--
http://www.gunlaug.no
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************