0
では動作しません。フレックスボックス私はIE 11に適切に柔軟ボックスをレンダリングすることはできませんが、私は交換するときのDOCTYPE HTML 4.0過渡
誰かが私にその理由を教えてもらえますか?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<style>
td {
background: #eee;
border: 1px solid;
}
.flex-container {
display: flex;
flex-direction:column;
width: 400px;
height: 250px;
}
.flex-item {
display:block;
}
</style>
</head>
<body>
<table>
<tr>
<td>normal cell</td>
<td>normal cell</td>
</tr>
<!-- my flexibal container-->
<tr class="flex-container">
<td class="flex-item">flex item 1</td>
<td class="flex-item">flex item 2</td>
</tr>
</table>
</body>
</html>
ご協力いただきありがとうございます –