I try this simple html code with IE10.
I search a lot and most of the documents say if we want to use flex property we must use prefix (-ms-flexbox) in IE10.
But when I try this code with developer tool it works great.I have no i.e. 10 but I open the code with i.e.11 and open developer tool with f12. After that I select IE10 and it works perfect.
Any idea? Can we use flex property without prefix in IE10?
.a {
width: 200px;
height: 200px;
background: red;
}
.b {
width: 200px;
background: orange;
}
.ww {
display: flex;
}
<div class="ww">
<div class="a">
</div>
<div class="b">
</div>
</div>