Bonjour,
j'ai un tableau qui dépasse d'un <div> sur le coté droit.
J'aimerais que le cadre du <div> englobe le <table>. Mais comment faire ?
Voici mon code HTML / CSS :
Merci d'avance pour votre aide.
Modifié par Tchupacabra (29 Apr 2008 - 10:24)
j'ai un tableau qui dépasse d'un <div> sur le coté droit.
J'aimerais que le cadre du <div> englobe le <table>. Mais comment faire ?
Voici mon code HTML / CSS :
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Gestion</title>
<style type="text/css">
<!--
* {
padding:0;
margin:0;
}
html, body {
width:100%;
height:100%;
/*max-width:1400px;*/
font-family:Verdana, Arial, Helvetica, "Trebuchet MS", sans-serif;
font-size:12px;
color:#004B95;
}
div.zone-gestion {
margin-bottom:10px;
padding:10px;
border: 2px outset #004b95;
background-color: #e9f3fe;
}
th, td {
padding:6px;
border:1px solid #FF0000;
}
-->
</style>
</head>
<body>
<div class="zone-gestion">
<table>
<thead>
<tr>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
<th>############</th>
</tr>
</thead>
<tbody>
<tr>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
<td>############</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
Merci d'avance pour votre aide.
Modifié par Tchupacabra (29 Apr 2008 - 10:24)