Drole de tableau

Résolu
jjaco_tsx Messages postés 34 Date d'inscription   Statut Membre Dernière intervention   -  
jjaco_tsx Messages postés 34 Date d'inscription   Statut Membre Dernière intervention   -
Bonjour,
voici une partie de mon tableau...
je m'intersse à la 1er ligne 2ème colonne
-il saute une ligne entre "le petit mot....." et " Joseph"
-joseph etc...apparaît en gras
-ma 1ere ligne du tableau s'est aggrandie en hauteur
Que s'est-il passé?
merci et bon weekend et joyeux noel


<tr>
<td align=center width="100" height="100"><img src=></td>
<td width="300" height="100">le petit mot du président à l'occasion de la nouvelle année...<h4 align="right">Joseph,
<br>Président du club</h></td> (je vais ici placer un a href vers le texte intégral)
<td align=center width="100" height="100"><img src="pet.jpg"></td>
<td width="300" height="100">du sport à tout âge...</td>
</tr>
<tr>
<td align=center width="100" height="100">image 2</td>
<td width="300" height="100">comment</td>
<td align=center width="100" height="100">image 8</td>
<td width="300" height="100">comment</td>
</tr>
A voir également:

3 réponses

rescue Messages postés 1039 Date d'inscription   Statut Contributeur Dernière intervention   136
 
Bonjour,

C'est ta balise h4. surtout faudrait la fermer cette balise.
"Faux : <br>Président du club</h></td>" Vraix :<br>Président du club</h4></td>

Toutes les balises de H1 à H7 font un saut de ligne donc je te conseil <big> + <b>
Voici le code

<table>
<tr>
<td align=center width="100" height="100"><img src=></td>
<td width="300" height="100">le petit mot du président à l'occasion de la nouvelle année...<big><b>Joseph,
<br>Président du club</b><big></td> (je vais ici placer un a href vers le texte intégral)
<td align=center width="100" height="100"><img src="pet.jpg"></td>
<td width="300" height="100">du sport à tout âge...</td>
</tr>
<tr>
<td align=center width="100" height="100">image 2</td>
<td width="300" height="100">comment</td>
<td align=center width="100" height="100">image 8</td>
<td width="300" height="100">comment</td>
</tr>
</table>

@+
0
Utilisateur anonyme
 
Bonjour. Il faut utiliser du css. Si vous ne savez pas ce qu'est le css, je vous conseille d'aller sur le site du zéro (http://www.siteduzero.com). Voici donc le code html à mettre :


<tr>
<td width="100" height="100"></td>
<td width="300" height="100"><span>le petit mot du président à l'occasion de la nouvelle année... <h4>Joseph,
<br>Président du club</h4></span></td> <!--Je vais ici placer un a href vers le texte intégral-->
<td width="100" height="100"><img src="pet.jpg"></td>
<td width="300" height="100">du sport à tout âge...</td>
</tr>
<tr>
<td width="100" height="100">image 2</td>
<td width="300" height="100">comment</td>
<td width="100" height="100">image 8</td>
<td width="300" height="100">comment</td>
</tr>

Voici le code css à mettre :

td{ text-align: center;
}

.h4{ font weight: bold /* Pour mettre en gras*/
}




J'espère avoir répondu à vos attentes.
0
jjaco_tsx Messages postés 34 Date d'inscription   Statut Membre Dernière intervention   2
 
merci, j'ai trouvé
en fait pour changer de taille de police, il faut faire <font size x></font> (inverse de <hx> 1=petit 6= grand)
merci encore bon noel à tous
0