Je souhaite rajouter un div qui contiendra des données importées.
Ce div est placé en position absolute devant un tableau (<table> et </table>)
J'ai utilisé ce tableau pour pouvoir y inclure une image de fond qui correspond à ce qui va servir de support de lecture des infos importées depuis ma bd ...

Le problème est le suivant sous firefoxe et je pense sous IE egalement mes div se balladent lorsque je bouge la taille de la fenêtre de mon navigateur , comment est -ce possible ? Et où ais je commis une erreur ?

merci à vous
Franck Smiley langue
Bonjour,
Un exemple en ligne, du code, un lien seraient très utiles et probablement plus efficace car là nous ne disposons pas d'assez d'informations.
ben voilà ,


<table border="0" align="left"  valign="top" width="100%" height="100%"  cellpadding="0" cellspacing="0">
 	<tr>
    	<td align="left"  valign="top" width="100%" height="100%">



<table width="60%"  border="0" cellspacing="0" cellpadding="0">
  <tr><td width="13%" height="612"><div align="left"><img src="logo_news.jpg" width="83" height="207"></div></td>
    <td width="87%" height="612"><div align="left"><img src="news.jpg" width="505" height="591"></div></td>
 
  </tr>
</table>
</table>


<div style="position:absolute; top:112px; left:238px; width: 414px;">

			
 <table height="155" width="412" cellpadding="0" cellspacing="0" border="0" >
    <tr>
      <td height="20" colspan="2"><div align="right"></div></td>
      <td width="348" height="20"><div align="right">
        Date  
          <select name="date" id="select">
            <option>Sélectionner</option>
            <?php 
					include("conf.php");
					mysql_connect($sql_serveur,$sql_user,$sql_passwd) or die ("Impossible de se connecter");
					//echo "Connexion réussie";
					mysql_select_db($sql_bd)or die("Could not select database");
					$query = "SELECT * FROM newsjour ORDER BY jour DESC, mois DESC, annee DESC limit 1 ";
					$result = mysql_query($query) or die("Query failed");
					$test = mysql_fetch_assoc($result);
					do { ?>
            <?php $i = $i+1; ?>
            <option value="<?php echo $test['id']; ?>"<?php if ($i == 1) { echo "selected"; } ?>><?php echo $test['jour']." ".$test['mois']." ".$test['annee']; ?></option>
            <?php } while ( $test = mysql_fetch_assoc($result)); ?>
        </select>
      </div></td>
    </tr>
    <tr>
      <td width="4" height="27"></td>
      <td height="15" colspan="2"><?php include("titrenj.php");?></td>
    </tr>
    <tr valign="top">
      <td> </td>
      <td colspan="2"> <a>
        <?php include("textenj.php");?>
      </a> </td>
 <td width="28"></td>    
 </table>
</div>
<table width="60%"  border="0" cellspacing="0" cellpadding="0">
  <tr><td width="13%" height="612"><div align="right"><img src="logo_news.jpg" width="83" height="207"></div></td>
    <td width="87%" height="612"><div align="center"><img src="news.jpg" width="505" height="591"></div></td>
 
  </tr>
</table>
</table>



Je sais pas si cela va t'aider ....
Merci encore

Smiley biggrin Franck