使用flexie在兼容IE的容器中并排划分

时间:2012-10-19 18:57:44

标签: html5 internet-explorer google-chrome css3

我目前正在开发一个css3 / html5项目。由于我之前提出的一个问题,它在chrome中完美地工作,并且建议使用flexie(http://flexiejs.com/),但在IE中甚至没有关闭。下面是Chrome浏览器中的内容。

Screenshot of google chrome

在IE中它看起来像下面的

Screenshot of IE

如果有帮助,我已将代码添加到http://jsfiddle.net/Ax6Xr/

我添加了下面的CSS,因为某些原因stackoverflow不会让我提交而不发布一些看起来有点无意义的代码,因为我已经链接到jsfiddle。

html, body
{
    padding: 0;
    margin: 0;
    height: 100%;
}

#wrapper
{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 100%;
    background-color: purple;
    width: 100%;
    margin-top: 0px;
}

header
{
    width: 100%;
    height: 80px;
    background-color: black;
    color: white;
}

#articleContainer {
    width: 75%;
    margin: auto;
    background-color: blue;
    display: -webkit-box;
    -webkit-box-flex: 1;
}

#articleContent
{
    width: 70%;
    background-color: yellow;
}

#articleSideBar
{
    position: relative;
    width: 28%;
    background-color: green;
    margin-left: 2px;
    margin-right: 2px;
    display: inline;
    margin-top: 0px;
    height: auto;
}

以下是HTML

<html>
    <head>
        <title>index</title>
        <link href="ArticleStyleSheet.css" rel="stylesheet" type="text/css" />
        <script src="../scripts/flexie.js" type="text/javascript"></script>
    </head>
    <body>
        <div id="wrapper">
            <header>
                Header
            </header>
            <div id="articleContainer">

                <div id="articleContent" contenteditable>
                    The quick brown fox jumped over the lazy dogs back. All good men must come to the aid of the party
                </div>

                <div id="articleSidebar">
                    Article Sidebar
                </div>
            </div>
        </div>
    </body>
</html>

2 个答案:

答案 0 :(得分:0)

IE尚未兼容HTML5。我相信IE10会。

答案 1 :(得分:0)

Flexie会查找非供应商前缀属性。例如,它将忽略-moz-box-pack,但不会忽略box-pack。为了获得最佳结果,除了前缀属性之外,还要确保使用非供应商前缀属性。 尝试添加: display:box; box-flex:1; ...