Deplacer tableau html (pas totalement à droite)

Fermé
bbc94 Messages postés 1 Date d'inscription mercredi 5 juin 2013 Statut Membre Dernière intervention 2 août 2013 - Modifié par bbc94 le 2/08/2013 à 18:58
jolyjump3r Messages postés 1827 Date d'inscription mardi 8 novembre 2011 Statut Membre Dernière intervention 14 mars 2020 - 16 août 2013 à 01:05
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
A voir également:

3 réponses

Utilisateur anonyme
2 août 2013 à 21:37
Salut tu met celui de gauche en float: left et celui de droite en float: right
1
jolyjump3r Messages postés 1827 Date d'inscription mardi 8 novembre 2011 Statut Membre Dernière intervention 14 mars 2020 616
16 août 2013 à 01:04
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>
1
jolyjump3r Messages postés 1827 Date d'inscription mardi 8 novembre 2011 Statut Membre Dernière intervention 14 mars 2020 616
16 août 2013 à 01:05
il y a aussi les tableaus mais bonjour le bordel
1