私のコードには2つの困難があり、私を助けることができる人々のために事前に感謝しています。テキストを背景の灰色の中央に配置したい私はこのコードの行を追加することによって、真ん中に置くことを実現:divにテキストを配置してテーブルを反応させる
line-height: 90px;
text-align: center;
しかし、ときに私はそうdivの中に私のテキストの特定の部分が消えないと私は理由を知りません。さらに、私はこの表を反応的にしたいので、アドバイスを受けたいと思っていました。私の目標は、各セルがブロックとして動作し、別のセルの下に行くことですが、実際のコードで可能かどうかはわかりません。
table{
table-layout: fixed;
width: 100%;
font-family: 'Varela Round';
}
th, td {
overflow:hidden;
font-family: 'Varela Round';
width:100%;
}
th{line-height:3;}
td{line-height:1.4;}
#base{background-color:#07183D;color:white;font-family: 'Varela Round';}
#intermediaire{background-color:#8A012C;color:white;font-family: 'Varela Round';}
#avance{background-color:#022C8A;color:white;font-family: 'Varela Round';}
#complet{background-color:#3B570A;color:white;font-family: 'Varela Round';}
.title600{font-size:18px; letter-spacing:1.5px;}
<table>
<tr>
<th><center><div id="base" style="z-index: 1000; width: 258px; opacity: 1; transform: matrix(1, 0, 0, 1, 0, 0);">
<h2 class="title600">BASE</h2>
</div></center></th>
<th><center><div id="intermediaire" style="z-index: 1000; width: 258px; opacity: 1; transform: matrix(1, 0, 0, 1, 0, 0);">
<h2 class="title600">INTERMÉDIAIRE</h2>
</div></center></th>
<th><center><div id="avance" style="z-index: 1000; width: 258px; opacity: 1; transform: matrix(1, 0, 0, 1, 0, 0);">
<h2 class="title600">AVANCÉ</h2>
</div></center></th>
<th><center><div id="complet" style="z-index: 1000; width: 258px; opacity: 1; transform: matrix(1, 0, 0, 1, 0, 0);">
<h2 class="title600">COMPLET</h2>
</div></center></th>
</tr>
<tr>
<td><center><div style="width:258px;text-align:justify;font-size: 12px">Cette formule vous permet de connaître les entreprises présentes sur ce territoire et de le valider </div></center></td>
<td><center><div style="width:258px;text-align:justify;font-size: 12px">texte</center></td>
<td><center><div style="width:258px;text-align:justify;font-size: 12px">texte</center></td>
<td><center><div style="width:258px;text-align:justify;font-size: 12px">texte</center></td>
</tr>
<tr>
<td><center><div style="width:258px;height:100px;text-align:justify;background:grey;"><b>Inclut</b>: la liste des sociétés</div></center></td>
<td><center><div style="width:258px; height:100px;text-align:justify;background:grey;"><b>Inclut</b>: la liste des société + les contacts</div></center></td>
<td><center><div style="width:258px; height:100px;text-align:justify;background:grey;
;"><b>Inclut</b>: la liste des société + les contacts + les mails nominatifs</div></center></td>
<td><center><div style="width:258px; height:100px;text-align:justify;background:grey;"><b>Inclut</b>: la liste des société + les contacts + les mails nominatifs + les lignes directes (fixes et/ou mobiles)</div></center></td>
</tr></table>
は、問題を再現できませんでした。投稿する前に問題が存在することを確認してください。 – kmg