4

我想在我的页面上有一个div居中并具有一定宽度的页面,但如果内容需要,它会超出该宽度。我正在这样做:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <style type="text/css">
            .container-center {
                text-align: center;
            }
            .container-minwidth {
                min-width: 5em;
                display: inline-block;
                border: 1px solid blue;
            }
        </style>
    </head>
    <body>
        <div class="container-center">
            <div class="container-minwidth">
                a
            </div>
        </div>
    </body>
</html>

这在 Firefox/Safari 上效果很好,但在不理解display: inline-block. 关于如何在 IE6 上进行这项工作的任何建议?

4

3 回答 3

4

它不是一个完美的解决方案,但我已经解决了一些 IE6 缺乏对 min-width 支持的问题。

<style type="text/css">            
            .container-minwidth {
                min-width: 5em;

                width: auto !important;
                width: 500px; /* IE6 ignores the !important tag */

                /* would help for expanding content if it blows past 500px; */
                overflow:auto; 

                display: inline-block;
                border: 1px solid blue;
            }        
</style>

在这种情况下可能有帮助的另一个标签是溢出标签。

于 2009-02-02T04:49:06.440 回答
1

实际上 Alessandro IE6 确实理解display: inline-block,它不理解你的代码的是min-width. 有很多技巧可以让它工作,但我不推荐其中任何一个。如果您要使用它们中的任何一个,请确保将它们放在特定于 IE6 的样式表中,这样它就不会干扰您的其他更标准的投诉浏览器。

于 2009-02-02T04:49:51.663 回答
0
<style type="text/css">            
        .container-minwidth {
            min-width: 5em;
            _width: 500px;
            white-space:nowrap;

            display: inline-block;
            *display:inline;
            *zoom:1;

            border: 1px solid blue;
        }        
</style>
于 2012-05-07T02:45:37.287 回答