Tableau html
crazyghandi
Messages postés
312
Date d'inscription
Statut
Membre
Dernière intervention
-
crazyghandi Messages postés 312 Date d'inscription Statut Membre Dernière intervention -
crazyghandi Messages postés 312 Date d'inscription Statut Membre Dernière intervention -
Bonjour,
J'ai reglé la bordure a 0 sur un tableau html. toutefois, si les bordures ont disparu, il reste
un petit espace delimitant les cellules ou l'on voit l'image de fond et c'est genant.
Quelqu'un sait comment je peux coller les cellules (couleur de fond bleue) ensemble sans delimitations ?
pour mieux comprendre : www.ei-consultant.com
merci d'avance pour votre aide
J'ai reglé la bordure a 0 sur un tableau html. toutefois, si les bordures ont disparu, il reste
un petit espace delimitant les cellules ou l'on voit l'image de fond et c'est genant.
Quelqu'un sait comment je peux coller les cellules (couleur de fond bleue) ensemble sans delimitations ?
pour mieux comprendre : www.ei-consultant.com
merci d'avance pour votre aide
A voir également:
- Tableau html
- Tableau word - Guide
- Tableau ascii - Guide
- Trier un tableau excel - Guide
- Tableau croisé dynamique - Guide
- Editeur html - Télécharger - HTML
4 réponses
voici le code de index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>EI CONSULTANT</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="style.css" rel="stylesheet" type="text/css">
<?php
include 'init.php';
?>
<style type="text/css">
<!--
body {
background-image:url(images/bckgrd.JPG);
background-repeat:no-repeat;
font:Arial;
}
-->
</style></head>
<body>
<table width="200" border="0" align="center" class="tbl">
<tr>
<td height="112" colspan="3" background="images/baniere.jpg"></td>
</tr>
<tr>
<td background="images/fonds/fond_gauche.jpg" rowspan="2"><?php include "gauche.php" ?></td>
</tr>
<tr>
<td background="images/fonds/fond_main.jpg"><?php
include "menu.php";
echo "<br><br>";
include ($_GET['main']); ?></td>
</tr>
<tr>
<td colspan="2" height="20"><?php include "bas.php"; ?>
</td>
</tr>
</table>
</body>
</html>
et la classe tbl :
.tbl {
height:700px;
width:900px;
font: Arial, Helvetica, sans-serif;
}
je viens de refaire un upload sur www.cp2a.com/ei si vous voulez verifier
merci pour vos reponses
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>EI CONSULTANT</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="style.css" rel="stylesheet" type="text/css">
<?php
include 'init.php';
?>
<style type="text/css">
<!--
body {
background-image:url(images/bckgrd.JPG);
background-repeat:no-repeat;
font:Arial;
}
-->
</style></head>
<body>
<table width="200" border="0" align="center" class="tbl">
<tr>
<td height="112" colspan="3" background="images/baniere.jpg"></td>
</tr>
<tr>
<td background="images/fonds/fond_gauche.jpg" rowspan="2"><?php include "gauche.php" ?></td>
</tr>
<tr>
<td background="images/fonds/fond_main.jpg"><?php
include "menu.php";
echo "<br><br>";
include ($_GET['main']); ?></td>
</tr>
<tr>
<td colspan="2" height="20"><?php include "bas.php"; ?>
</td>
</tr>
</table>
</body>
</html>
et la classe tbl :
.tbl {
height:700px;
width:900px;
font: Arial, Helvetica, sans-serif;
}
je viens de refaire un upload sur www.cp2a.com/ei si vous voulez verifier
merci pour vos reponses