Vous créez votre tableau comme d'habitude en cliquant sur l'icône tableau du menu :
Vous allez en mode source, votre tableau est ainsi écrit :
<table cellspacing="1" cellpadding="1" width="200" align="center" border="1">
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
Pour mettre une texture en fond, vous rajoutez ce que j'ai mis en rouge :
<table cellspacing="1" cellpadding="1" width="200" align="center" border="1" background="adresse de l'image" >
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
Vous obtenez
Il faudra faire attention aux dimensions de l'image, elle risque d'être repixellisée et répétée.
Commentaires