Deplacer tableau html (pas totalement à droite)
bbc94
Messages postés
1
Date d'inscription
Statut
Membre
Dernière intervention
-
jolyjump3r Messages postés 1833 Date d'inscription Statut Membre Dernière intervention -
jolyjump3r Messages postés 1833 Date d'inscription Statut Membre Dernière intervention -
Bonjour,
Alors voila je voudrais placer mon tableau suivant
<!--FX Empire Forex Tools BEGIN------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
<iframe frameborder="0" scrolling="no" height="310" width="300" allowtransparency="true" marginwidth="0" marginheight="0" src="http://tools.fr.forexprostools.com/..."> </iframe><br /><div style="width:300"><span style="font-size: 11px;color: #333333;text-decoration: none;"></span></div>
<!--FX Empire Forex Tools END---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
Qui se mette juste a droite de ce tableau
<!-- début du tableau eco -->
<iframe frameborder="0" scrolling="auto" height="580" width="770" allowtransparency="true" marginwidth="0"
marginheight="0" src="http://ecal.fr.forexprostools.com/e_cal.php?duration=daily&top_text_color=FFFFFF&header_text_color=FFFFFF&bg1=FFFFFF&bg2=CEEBFF&border=CBCBCB"
align="center"></iframe><br /><span style="font-size: 11px;color: #333333;text-decoration: none;"></a></span>
<!-- Fin du tableau eco -->
En résumé :
souhait :
http://www.noelshack.com/2013-31-1375462521-sans-titre.png
Voila le code de la page :
http://code.empreintesduweb.com/3543.html
Alors voila je voudrais placer mon tableau suivant
<!--FX Empire Forex Tools BEGIN------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
<iframe frameborder="0" scrolling="no" height="310" width="300" allowtransparency="true" marginwidth="0" marginheight="0" src="http://tools.fr.forexprostools.com/..."> </iframe><br /><div style="width:300"><span style="font-size: 11px;color: #333333;text-decoration: none;"></span></div>
<!--FX Empire Forex Tools END---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
Qui se mette juste a droite de ce tableau
<!-- début du tableau eco -->
<iframe frameborder="0" scrolling="auto" height="580" width="770" allowtransparency="true" marginwidth="0"
marginheight="0" src="http://ecal.fr.forexprostools.com/e_cal.php?duration=daily&top_text_color=FFFFFF&header_text_color=FFFFFF&bg1=FFFFFF&bg2=CEEBFF&border=CBCBCB"
align="center"></iframe><br /><span style="font-size: 11px;color: #333333;text-decoration: none;"></a></span>
<!-- Fin du tableau eco -->
En résumé :
souhait :
http://www.noelshack.com/2013-31-1375462521-sans-titre.png
Voila le code de la page :
http://code.empreintesduweb.com/3543.html
A voir également:
- Deplacer tableau html (pas totalement à droite)
- Tableau word - Guide
- Déplacer colonne excel - Guide
- Tableau ascii - Guide
- Trier un tableau excel - Guide
- Tableau croisé dynamique - Guide
3 réponses
deux solutions :
deux div avec les option FLOAT (left et right)
ca peu se presenter comme ça
<style type="text/css">
#left {
float: left;
height: 50px;
width: 50%;
}
#right {
float: right;
height: 50px;
width: 50%;
}
</style>
<body>
<div>
<div id="left">contenu</div>
<div id="right">contenu</div>
</div>
deux div avec les option FLOAT (left et right)
ca peu se presenter comme ça
<style type="text/css">
#left {
float: left;
height: 50px;
width: 50%;
}
#right {
float: right;
height: 50px;
width: 50%;
}
</style>
<body>
<div>
<div id="left">contenu</div>
<div id="right">contenu</div>
</div>