Problème placement tableau en html
alex139a
Messages postés
134
Statut
Membre
-
internetasso Messages postés 1054 Date d'inscription Statut Membre Dernière intervention -
internetasso Messages postés 1054 Date d'inscription Statut Membre Dernière intervention -
Bonjour,
je voudrais placer ce tableau en bas à droite, j'ai pas mal cherché, je ne trouve pas de solution.
Quelqu'un peut-il m'aider ? merci d'avance.
<style type="text/css">
body { border-style: solid;
border-width: 0px;
background-repeat: repeat;
position: absolute;
background-position:50% 110%;
list-style-type: disc;
font-family: Lucida;
background-color: rgb(255, 255, 255);
padding-left: 5em;
padding-top: 2em;
background-image: url(images/fond2.bmp);
}
</style>
</head>
<body >
<TABLE bgcolor="black">
<td>
<th style=color:#FFCC00>France  </th>
<th style=color:#FFCC00>   |  </th>
<th style=color:#FFCC00>  Espana  </th>
<th style=color:#FFCC00>  |  </th>
<th style=color:#FFCC00>  England  </th>
</td>
</TABLE>
</body>
je voudrais placer ce tableau en bas à droite, j'ai pas mal cherché, je ne trouve pas de solution.
Quelqu'un peut-il m'aider ? merci d'avance.
<style type="text/css">
body { border-style: solid;
border-width: 0px;
background-repeat: repeat;
position: absolute;
background-position:50% 110%;
list-style-type: disc;
font-family: Lucida;
background-color: rgb(255, 255, 255);
padding-left: 5em;
padding-top: 2em;
background-image: url(images/fond2.bmp);
}
</style>
</head>
<body >
<TABLE bgcolor="black">
<td>
<th style=color:#FFCC00>France  </th>
<th style=color:#FFCC00>   |  </th>
<th style=color:#FFCC00>  Espana  </th>
<th style=color:#FFCC00>  |  </th>
<th style=color:#FFCC00>  England  </th>
</td>
</TABLE>
</body>
A voir également:
- Problème placement tableau en html
- Tableau word - Guide
- Tableau ascii - Guide
- Trier un tableau excel - Guide
- Tableau croisé dynamique - Guide
- Editeur html - Télécharger - HTML
1 réponse
du html...
ajoute la balise head en haut déjà pour réparer l'erreur de syntaxe...
si maintenant sur ta page il n'y a que ca, tu peux la jouer comme ça :
La création d'un site commence par la réflexion de son devenir...
ajoute la balise head en haut déjà pour réparer l'erreur de syntaxe...
si maintenant sur ta page il n'y a que ca, tu peux la jouer comme ça :
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="generator" content="tagada tsoin tsoin">
<style type="text/css"><!--
#couche { position: absolute; top: 540px; left: 302px; width: 193px; height: 97px; visibility: visible }
body { font-family: Lucida; background: rgb(255,255,255) url(images/fond2.bmp) repeat 50% 110%; list-style-type: disc; padding-top: 2em; padding-left: 5em; border: solid 0px; position: absolute }-->
</style>
</head>
<body>
<center>
<div id="couche">
<center>
<table bgcolor="black">
<tr>
<td></td>
<th style="color:#FFCC00">France</th>
<th style="color:#FFCC00">|</th>
<th style="color:#FFCC00">Espana</th>
<th style="color:#FFCC00">|</th>
<th style="color:#FFCC00">England</th>
</tr>
</table>
</center>
</div>
<p></center>
</body>
</html>
La création d'un site commence par la réflexion de son devenir...