bug dans IE11 en utilisant la propriété flex sur un <table>
Bonjour,
J'utilise ce code CSS pour rendre responsive l'affichage dans un tableau et faire passer l'affichage de ligne à colonne :
Code:
1 2 3 4 5 6 7
| @media screen and (max-width: 1000px) {
#_resp {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content:space-between ;
} |
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| <table align="center" cellpadding="0" cellspacing="0" border="0">
<tr id="_resp">
<td width="325">
<table cellpadding="0" cellspacing="0" border="0" >
<tr>
<td width="324">
<img src="img/thematique.jpg" width="325" height="151" alt="thématique">
</td>
</tr>
<tr>
<td width="324">Ad Lorem...
</td>
</tr>
</table>
</td>
<td width="325">
<table cellpadding="0" cellspacing="0" border="0" >
<tr>
<td width="324">
<img src="img/thematique.jpg" width="325" height="151" alt="thématique">
</td>
</tr>
<tr>
<td width="324">Ad Lorem...
</td>
</tr>
</table>
</td>
<td width="325">
<table cellpadding="0" cellspacing="0" border="0" >
<tr>
<td width="324">
<img src="img/thematique.jpg" width="325" height="151" alt="thématique">
</td>
</tr>
<tr>
<td width="324">Ad Lorem...
</td>
</tr>
</table>
</td>
</tr>
</table> |
Il n'y a aucun bug dans FF, Chrome et Edge mais IE 11 ne l’interprette pas! comment faire ?
Merci