voila ma page :
A l'affichage j'ai le header de mon tableau bleu mais avec des séparations grises et j'aimerais me débarrasser de ces bordures. Je ne vois pas du tout d'où elle vienne
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47 <html> <style type="text/css"> .rule-ListHeader { background: #CDDDE4 none repeat scroll 0 0; border-bottom: 1px solid #FFFFFF; color: #000000; font-size: 12px; font-weight: bold; margin: 0 0 1px; padding: 3px 0 3px 8px; text-align: center; text-transform: uppercase; padding: 0px 0px 0px 0px; } .rule-SelectedRow { background: url(images/gray_gradient.gif) repeat-x; } .rule-List { font-size: 11px; font-weight: normal; text-align: center; padding: 3px 3px 3px 8px; background: #F1F1F1 none repeat scroll 0 0; } .rule-ListEvenRow,.DatePicker .weekheader { font-size: 11px; font-weight: normal; text-align: center; padding: 3px 3px 3px 8px; background: #F1F1F1 none repeat scroll 0 0; } </style> <body> <table border="0" class="rule-List" style="width: 100%;"> <tr class="rule-ListHeader"> <td style=""></td> <td>*</td> <td>Name </td> <td>Last modified </td> <td>Status</td> </tr> </table> </body> </html>
Partager