Je cherche à faire un tableau sans aucune marge ni bordure.
J'utilise pour ça des classes définies dans un css:
D'accord, j'en ai sans doute trop mis, mais comme ça marchait pas, j'ai un peu chargé pour être sur!
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 table.tabOnglet { padding-left:0px; padding-right:0px; padding-top:0px; padding-bottom:0px; margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:0px; border-width:0px; border-style:none; } img { padding-left:0px; padding-right:0px; padding-top:0px; padding-bottom:0px; margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:0px; border-width:0px; border-style:none; } tr { padding-left:0px; padding-right:0px; padding-top:0px; padding-bottom:0px; margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:0px; border-width:0px; border-style:none; } td { padding-left:0px; padding-right:0px; padding-top:0px; padding-bottom:0px; margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:0px; border-width:0px; border-style:none; } td.tdOnglGauche { width:165px; background-image:url(./images/onglet_gauche.png); background-repeat:no-repeat; background-position:bottom; }
Mon problème, c'est que quand j'utilise une image de fond (background-image=url(...)), elles ne se collent pas les unes aux autres.
Est-ce quelqu'un voit où se trouve mon problème... et éventuellement quelle solution apporter (en restant dans le même esprit si possible...)?
Partager