Bonjour,
j'ai un problème avec un tableau dont les champs doivent être collé. Cela marche sur firefox mais pas sur internet explorer.
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 <head> <style> .pinfo_tableau li{ float: left; } .pinfo_tab1{ list-style-type:none; } .pinfo_tab2{ list-style-type:none; } hr{ padding: 0%; margin-top: 0px; margin-bottom: 0px; margin: 0%; clear : both; visibility : hidden; } </style> </head> <!--<link rel="stylesheet" type="text/css" href="css.css"/> --> <ul class="pinfo_tableau"> <li class="pinfo_tab1">champ1</li> <li class="pinfo_tab2">champ2</li> <hr> <li class="pinfo_tab1">champ1</li> <li class="pinfo_tab2">champ2</li> <hr> <li class="pinfo_tab1">champ1</li> <li class="pinfo_tab2">champ2</li> </ul>
Partager