Bonjour,
voila je suis en train de faire un site et j'ai besoin de "coller les cellules d'un tableau, mais le problème, c'est que sur FireFox sa marche et sur IE sa marche pas (
je vous montre :
[URL=www.globalinfo.ch]clique ici ![/URL]
(sur IE, c'est l'espace en haut entre le haut et le reste...)
Mes codes :
CSS:
PHP:
haut.php :
gauche.php
Alors quelqu'un pour m'aider? :S: (
Modifié par kevinrob (04 May 2006 - 12:47)
voila je suis en train de faire un site et j'ai besoin de "coller les cellules d'un tableau, mais le problème, c'est que sur FireFox sa marche et sur IE sa marche pas (
je vous montre :
[URL=www.globalinfo.ch]clique ici ![/URL]
(sur IE, c'est l'espace en haut entre le haut et le reste...)
Mes codes :
CSS:
.div_index{
width: 800px;
background-color: #778899;
border: 1px solid Black;
}
.table_index{
border-collapse: collapse;
margin: 0px;
padding: 0px;
border: 0px;
}
.td_index{
border: 0px none;
margin: 0px;
padding: 0px;
background-color: Aqua;
vertical-align: top;
}
.tr_index{
border: 0px none;
margin: 0px;
padding: 0px;
}
PHP:
<CENTER>
<DIV class="div_index">
<TABLE class="table_index">
<TR class="tr_index">
<TD colspan=3 class="td_index">
<?php
include('haut.php');
?>
</TD>
</TR>
<TR class="tr_index">
<TD class="td_index" background="graphe/fond_gauche.png" width="100px" height="500px">
<?php
include('gauche.php');
?>
</TD>
<TD class="td_index" background="graphe/fond_millieu.png" width="600px" height="500px">
<?php
include('millieu.php');
?>
</TD>
<TD class="td_index" background="graphe/fond_droite.png" width="100px" height="500px">
<?php
include('droite.php');
?>
</TD>
</TR>
<TR class="tr_index">
<TD class="td_index">
<?php
include('bas.php');
?>
</TD>
</TR>
</TABLE>
</DIV>
</CENTER>
haut.php :
<?php
echo '<IMG SRC="graphe/logo.png">';
?>
gauche.php
<?php
echo '
<CENTER>
<BR><BR><BR>
';
$sql = 'SELECT * FROM `bouton_menu` ORDER BY `place`';
$req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());
while($data = mysql_fetch_assoc($req)) {
echo '
<DIV>
<TABLE>
<TR>
<TD width="80px" height="25px" class="bouton">
<A href="?page='.$data['nom'].'" class="bouton">
'.$data['nom'].'
</A>
</TD>
</TR>
</TABLE>
</DIV>
';
}
echo '
</CENTER>
';
?>
Alors quelqu'un pour m'aider? :S: (
Modifié par kevinrob (04 May 2006 - 12:47)