Deplacer tableau html (pas totalement à droite)

bbc94 Messages postés 1 Statut Membre -  
jolyjump3r Messages postés 2055 Statut Membre -
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

3 réponses

  1. Utilisateur anonyme
     
    Salut tu met celui de gauche en float: left et celui de droite en float: right
    1
  2. jolyjump3r Messages postés 2055 Statut Membre 621
     
    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
  3. jolyjump3r Messages postés 2055 Statut Membre 621
     
    il y a aussi les tableaus mais bonjour le bordel
    1