J'ai parcouru plusieurs articles sur StackOverflow, mais je n'ai pas été en mesure de trouver une réponse à cette question plutôt simple.
J'ai une construction HTML comme celle-ci:
<table>
<tr>
<td class="thatSetsABackground">
<div class="thatSetsABackgroundWithAnIcon">
<dl>
<dt>yada
</dt>
<dd>yada
</dd>
</dl>
<div>
</td>
<td class="thatSetsABackground">
<div class="thatSetsABackgroundWithAnIcon">
<dl>
<dt>yada
</dt>
<dd>yada
</dd>
</dl>
<div>
</td>
</tr>
</table>
Ce dont j'ai besoin est que le div
remplisse la hauteur du td
, afin que je puisse positionner l'arrière-plan du div (l'icône) dans le coin inférieur droit du td
.
Comment me proposez-vous de m'y prendre?