Salut,

J'ai actuellement une feuille de style que je définis comme ceci :
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
background-color:white;
margin:0px 0px 0px 0px;
}
h1 {
font-family:verdana, sans-serif;
font-size:80%;
color:black;
background-color:transparent;
text-align:left;
}
h2 {
font-family:verdana, sans-serif;
font-size:80%;
color:black;
background-color:transparent;
text-align:left;
}
h3 {
font-family:verdana, sans-serif;
font-size:80%;
color:black;
background-color:transparent;
text-align:left;
}
p {
font-family:verdana, sans-serif;
font-size:80%;
color:black;
background-color:transparent;
text-align:left;
margin-left:0px;
margin-right:0px;
}
li {
font-family:verdana, sans-serif;
font-size:80%;
color:black;
background-color:transparent;
text-align:center;
margin-left:0px;
margin-right:0px;
}
table {
border-color:#1F1F1F;
border-style:solid;
border-width:1px;
}
td {
font-family:verdana, sans-serif;
font-size:80%;
color:blue;
text-align:center;
background-color:transparent;
border-color:gray;
border-style:solid;
border-width:2px;
}
a:link {
background-color:transparent;
text-decoration:underline;
}
a:visited {
background-color:transparent;
text-decoration:underline;
}
a:hover {
background-color:transparent;
text-decoration:underline;
}
Dans ma page html, j'ai un tableau dans lequel il y a une petite image (un smiley) qui, malheuresement, est entouré d'un carré aux traits bleus si non visité, violet si visité.
J'aimerai enlever ce carré mais je n'y arrive pas.
Comment faire ?

marchi d'avance

mavina