Uwe Kaiser wrote:
> An italic styled h1 element is destroying the layout on:
> <http://www.kriton.de/CSS/rounded/rounded.html>
>
> In order to reproduce the effect, you need to decrease the viewport
> until the width is near the small range of pixels before the line of
>  h1 element will break.

Hi Uwe,

In addition to the negative margin method suggested by Georg, you can use
the "usual" method suggested in the article you mentioned. For IE5.5 and IE6
it requires giving layout and overflow:visible to a suitable container, you
can use the h1. Indeed adding:
/*\*/
* html h1 {
        height: 1px;
        overflow: visible;
}
/**/

seems to solve the problem. (For IE5.01 you need some additions.)
Please let me know if this doesn't work for you.

Bruno

______________________________________________________________________
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