简体   繁体   中英

Overflowing content outside parent div in ie6

The following code:

<div style="width: 50px; border: 1px solid green;">
    <div style="position: absolute;">
        whatever text you want
    </div>
</div>

Renders like this:

现代浏览器

in any modern browser(ie7+, chrome, firefox), and like this:

IE6

in IE6.

What i would like is for it to render in IE6 just like it renders in the others browsers. Any ideas ?

This is a known issue with IE6. (one of many)

This site discusses the problem and how to work around it: http://www.positioniseverything.net/explorer/expandingboxbug.html

Why don't you just put the text outside the div?

<div style="width: 50px; border: 1px solid green;">
</div>
whatever text you want

Or

<div style="width: 50px; border: 1px solid green;">
    <div style="position:absolute; width:XXpx">whatever text you want</div>
</div>

Would that work for you?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM