Hi,
j'ai un petit problème avec une page. Quelqu'un peut me dire pourquoi le tableau ne respecte pas la div#page ?
Quand j'ai autre chose qu'un tablea tout va bien, par contre lorsqu'un tableau est placé dans la div#page celle si prend la taille du body (il me semble). (Sur firefox en tout cas)
Si quelqu'un peut me file un coup de main merci d'avance
Modifié par einboubou (05 Dec 2009 - 20:20)
j'ai un petit problème avec une page. Quelqu'un peut me dire pourquoi le tableau ne respecte pas la div#page ?
Quand j'ai autre chose qu'un tablea tout va bien, par contre lorsqu'un tableau est placé dans la div#page celle si prend la taille du body (il me semble). (Sur firefox en tout cas)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style>
#c {
width:100%;
float:left;
background-color:blue;
min-width:960px;
}
#left {
float:left;
width:150px;
height:500px;
background-color:red;
}
#right {
float:right;
width:150px;
height:500px;
background-color:yellow;
}
#page {
background-color:purple;
width:100%;
}
#page table {
width:100%;
}
</style>
</head>
<body>
<div id="c">
<div id="left">
ds
</div>
<div id="right">
ds
</div>
<div id="page">
<table>
<thead >
<tr >
<th width="10%">Date</th>
<th width="60%">Title - Location</th>
<th width="20%">Company</th>
<th width="10%">Score</th>
</tr>
</thead>
<tbody>
<tr >
<td >dsqdsq</td>
<td >dsqdsq</td>
<td >dsqdsq</td>
<td >dsqdsq</td>
</tr>
<tr >
<td >dsqdsq</td>
<td >dsqdsqdsqdsqdsqdsq dssqdsqdsqdsq dsqdsqd sqdsqdsqdsqdsqdsqdsq dsqdsqdsqdsqdsqds qdsqdsqdsqdsq dsq</td>
<td >dsqdsq</td>
<td >dsqdsq</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>
Si quelqu'un peut me file un coup de main merci d'avance
Modifié par einboubou (05 Dec 2009 - 20:20)