web-dev-qa-db-ja.com

表示される理由:-ms-flex; -ms-justify-content:center; IE10で動作しませんか?

IE10で次のコードが機能しないのはなぜですか?

.foo {
    display: -ms-flex; 
    -ms-justify-content: center;
}

彼らが働くためには何を書く必要がありますか?

27
user2590633

IE10は、Flexbox March 2012 からのドラフトを実装しました。これらのプロパティは以下に対応しています。

.foo {
    display: -ms-flexbox;
    -ms-flex-pack: center;
}
48
cimmanon

すべてのブラウザで正しい構文を取得しようとする場合に開始するのに適した場所は、 http://the-echoplex.net/flexyboxes/ です

コンテナ内で要素を水平および垂直に中央揃えするには、次のようなコードを取得します:(Chrome、FF、Opera 12.1+およびIE 10+)

[〜#〜] fiddle [〜#〜]

<div class="flex-container">
  <div class="flex-item">A</div>
  <div class="flex-item">B</div>
  <div class="flex-item">C</div>
</div>

CSS

.flex-container {

    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.flex-item
{
    width: 100px;
    height:100px;
    background: brown;
    margin: 0 10px;
}

/*
    Legacy Firefox implementation treats all flex containers
    as inline-block elements.
*/

@-moz-document url-prefix() {
.flex-container {
    width: 100%;
    -moz-box-sizing: border-box;
    }

}
23
Danield