Alisha wrote:

> first of all, here is the document where i experience the problem
> http://www.alisha.it/cv.htm
> and here is the css http://www.alisha.it/style.css
>
> the problem is that the text doesn't relly flow around the floated
> image. anyone has any suggestion about it?
> sorry if i sound so "newbie" :)

As far as I know, it is not a "newbie" problem at all!  FireFox shows a bug
here [1].  Your text is inside a <li>, and FF reduces the width of a <li> in
presence of a float, instead of simply reducing the width of some line boxes
created by the text inside the <li>.  Add a border to the "studies" <li> to
see what happens.
The only workaround that I know is:
li {
  -moz-float-edge: content-box;
}
which makes the <li>s to behave correctly in presence of floats. That's a
Mozilla proprietary property so unfortunately it doesn't validate.  You may
prefer restructuring a bit your markup to avoid this situation.  Maybe there
are other workarounds, I don't know.

Bruno

[1] https://bugzilla.mozilla.org/show_bug.cgi?id=163110

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to