css box-shadow pour la ligne de table?
Oct 14 2020
Voici mon code HTML:
<style>
.yellow{
background-color: yellow;
}
td{
width:40px;
}
tr:first-child {
box-shadow: 1px 1px 5px 5px #d99292;
}
</style>
<table>
<tr>
<td class=yellow>1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td class=yellow>4</td>
</tr>
</table>
Le but est d'avoir une ombre portée autour de la première ligne. Le problème est que la couleur d'arrière-plan de la cellule 4 l'obscurcit.
Ma question est la suivante: comment puis-je faire apparaître le diaporama par-dessus l'arrière-plan de la cellule 4?
edit: voir la question de suivi: css insert box-shadow pour la ligne du tableau?
Réponses
3 TemaniAfif Oct 14 2020 at 02:43
Réduisez le z-index des cellules suivantes:
.yellow {
background-color: yellow;
}
td {
width: 40px;
}
tr:first-child {
box-shadow: 1px 1px 5px 5px #d99292;
}
tr:first-child + tr td {
position: relative;
z-index: -1;
}
/* the below is not mandatory but to make sure
the cells doesn't go below the table */
table {
position:relative;
z-index:0;
}
<table>
<tr>
<td class=yellow>1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td class=yellow>4</td>
</tr>
</table>