Modifier le code css d'un seul tableau ?
Résolu/Fermé
lesnoa
Messages postés
22
Date d'inscription
mercredi 3 décembre 2008
Statut
Membre
Dernière intervention
5 janvier 2011
-
3 nov. 2009 à 12:23
papouuu86 Messages postés 77 Date d'inscription mercredi 21 octobre 2009 Statut Membre Dernière intervention 4 novembre 2009 - 3 nov. 2009 à 14:11
papouuu86 Messages postés 77 Date d'inscription mercredi 21 octobre 2009 Statut Membre Dernière intervention 4 novembre 2009 - 3 nov. 2009 à 14:11
A voir également:
- Modifier le code css d'un seul tableau ?
- Code ascii tableau - Guide
- Tableau croisé dynamique - Guide
- Modifier dns - Guide
- Modifier liste déroulante excel - Guide
- Tableau word - Guide
4 réponses
papouuu86
Messages postés
77
Date d'inscription
mercredi 21 octobre 2009
Statut
Membre
Dernière intervention
4 novembre 2009
11
3 nov. 2009 à 13:35
3 nov. 2009 à 13:35
<table id="table1">
<tr><td><p><img src="images/photo pour cv.jpg" alt="ma photo"/></p> </td><td>Ce site présente mon CV.</p>
</td></tr>
</table>
</div>
<table id="table2">
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4.</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</tbody>
</table>
dans ta feuille de style tu fais ton design sur les id pas sur les balises exemple:
#table1
{
margin: auto;
border: 1px outset blue;
border-collapse: collapse;
}
<tr><td><p><img src="images/photo pour cv.jpg" alt="ma photo"/></p> </td><td>Ce site présente mon CV.</p>
</td></tr>
</table>
</div>
<table id="table2">
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4.</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</tbody>
</table>
dans ta feuille de style tu fais ton design sur les id pas sur les balises exemple:
#table1
{
margin: auto;
border: 1px outset blue;
border-collapse: collapse;
}
papouuu86
Messages postés
77
Date d'inscription
mercredi 21 octobre 2009
Statut
Membre
Dernière intervention
4 novembre 2009
11
3 nov. 2009 à 14:11
3 nov. 2009 à 14:11
cela dépend de la disposition que tu souhaite
papouuu86
Messages postés
77
Date d'inscription
mercredi 21 octobre 2009
Statut
Membre
Dernière intervention
4 novembre 2009
11
3 nov. 2009 à 12:33
3 nov. 2009 à 12:33
je comprends pas trop..
expliqué comme tu le fais ma réponse serait: donne un id à ton tableau.
expliqué comme tu le fais ma réponse serait: donne un id à ton tableau.
lesnoa
Messages postés
22
Date d'inscription
mercredi 3 décembre 2008
Statut
Membre
Dernière intervention
5 janvier 2011
3 nov. 2009 à 13:01
3 nov. 2009 à 13:01
Je suis débutante et j'ai certainement oublié quelque chose ...
Ci dessous copie de mes 2 tableaux et de pa page se style css
PAGE index.html :
<table>
<tr><td><p><img src="images/photo pour cv.jpg" alt="ma photo"/></p> </td><td>Ce site présente mon CV.</p>
</td></tr>
</table>
</div>
PAGE X. html
<table >
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4.</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</tbody>
</table>
FEUILLE DE STYLE EXTERNE CSS:
table
{
margin: auto;
border: 1px outset blue;
border-collapse: collapse;
}
th
{
background-color: yellow;
border: 4px outset blue;
color: #D36024;
font-size: 1.1em;
font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
}
td
{
background-color: #438b88;
border: 4px outset blue;
font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
text-align: center;
padding: 5px;
}
Ci dessous copie de mes 2 tableaux et de pa page se style css
PAGE index.html :
<table>
<tr><td><p><img src="images/photo pour cv.jpg" alt="ma photo"/></p> </td><td>Ce site présente mon CV.</p>
</td></tr>
</table>
</div>
PAGE X. html
<table >
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4.</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</tbody>
</table>
FEUILLE DE STYLE EXTERNE CSS:
table
{
margin: auto;
border: 1px outset blue;
border-collapse: collapse;
}
th
{
background-color: yellow;
border: 4px outset blue;
color: #D36024;
font-size: 1.1em;
font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
}
td
{
background-color: #438b88;
border: 4px outset blue;
font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
text-align: center;
padding: 5px;
}
3 nov. 2009 à 13:49
une autre question : Faut il faire un tableau ou pas pour n'y inclure qu'une photo et du texte ?
Les avis sont très différents sur ce que je trouve sur le web .