[CSS] Problème avec cadre sur une image lien
Bonjour.
Je n'arrive pas à supprimer des cadres blans autour d'images liens sur mon index.html...
Tout se trouve dans la balise #index
Ça fait 2h que je me bats avec mon css mais rien à faire !
Donc j'ai surement dut louper un truc...
voilà mon index
et mon CSS (également en pièce jointe)
Code:
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
| /* CSS Document */
/* -- Général -- */
body {
margin-left: 0px;
margin-top: 60px;
margin-right: 0px;
margin-bottom: 0px;
color: #FFFFFF;
background-color: #000000;
font-family: "Times New Roman", Times, serif;
}
#global {
position: relative;
margin-left: auto;
margin-right: auto;
width: 900px;
background-color: #FFFFFF;
color: #000000;
height: 540px;
padding: 20px;
background-image: url(global/cadre.jpg);
}
img {
border: none;
}
.Liens {
font-size: 13px;
color: #000000;
background-color: #FFFFFF;
}
a:link {
color: #000000;
text-decoration: none;
background-color: #FFFFFF;
}
a:visited {
text-decoration: none;
color: #000000;
background-color: #FFFFFF;
}
a:hover {
text-decoration: none;
color: #CC3300;
background-color: #FFFFFF;
}
a:active {
text-decoration: none;
color: #CC3300;
background-color: #FFFFFF;
}
.Categorie {
font-size: 15px;
color: #CC3300;
text-decoration: none;
letter-spacing: 2px;
background-color: #FFFFFF;
}
.Date {
color: #CC3300;
font-size: 13px;
border: none;
background-color: #FFFFFF;
}
div#bandeau {
width:900px;
height:130px;
background-position: center;
margin-bottom: 30px;
background-image: url(global/banniere.jpg);
background-repeat: no-repeat;
}
div#contenu {
width:900px;
height:380px;
left: 150px;
padding: 0px;
margin-top: 20px;
}
div#info {
width:640px;
float: right;
margin-top: 15px;
margin-right: 20px;
padding-left: 20px;
background-image: url(barreniv/barrevert.gif);
}
div#news {
width:630px;
overflow: auto;
height: 310px;
position: absolute;
left: 260px;
top: 245px;
}
div#niveau {
width:70px;
float: left;
height: 360px;
padding-top: 6px;
}
/* -- Index -- */
#index {
position: relative;
margin-left: auto;
margin-right: auto;
width: 600px;
height: 320px;
margin-top: 150px;
text-align: center;
color: #FFFFFF;
background-color: #000000;
}
#index .mentions {
font-size: 14px;
font-style: italic;
text-decoration: none;
}
/* -- Menu -- */
div#menup {
width:150px;
height:380px;
float: left;
}
dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu {
width: 150px;
}
#menu dt {
cursor: pointer;
;
height: 50px;
}
#menu li a, #menu dt a {
text-decoration: none;
}
#menu li a:hover, #menu dt a:hover {
}
#menu ul {
font-size: 13px;
text-align: left;
position: absolute;
width: 110px;
left: 170px;
top: 211px;
}
form{
overflow: auto;
height: 340px;
}
table {
width: 600px;
border-color: #CCCCCC;
border: 1px;
}
td {
padding: 4px;
text-align: left;
}
.coup {
background-image: url(global/barresond.gif);
}
.centre {
text-align: center;
}
/* -- Mortfolio -- */
html {
height: 400px;
overflow: hidden;
}
#flashcontent {
height: 350px;
} |
Il est vallidé W3C pour info
Voilà, voilà...