Bonjour à toutes et à tous,
J'ai un problème assez léger mais embêtant mon footer ne se positionne correctement que lorsque je le met en position fixed. Or je le veux simplement en bas mais lorsque je le met en absolute ou en relative il y a un minuscule espace entre le bord et l'image. J'ai déja essayer beaucoup de chose mon CSS est surement un grand foutoir ! Je vous le link pour que vous puissiez m'aider. J'espère que sa sera le cas !
Merci à vous.
CSS :
J'ai un problème assez léger mais embêtant mon footer ne se positionne correctement que lorsque je le met en position fixed. Or je le veux simplement en bas mais lorsque je le met en absolute ou en relative il y a un minuscule espace entre le bord et l'image. J'ai déja essayer beaucoup de chose mon CSS est surement un grand foutoir ! Je vous le link pour que vous puissiez m'aider. J'espère que sa sera le cas !
Merci à vous.
CSS :
*{
margin:0;
padding:0;
width:100%;
}
html {
background: url(img/wallpaper.png) no-repeat center fixed;
background-size: cover;
width:100%;
height:100%;
margin:0;
padding:0;
}
.titre {
width:50%;
display: block;
margin: auto;
}
#corps {
text-align: justify;
width: 50%;
background-color: white;
background-position: center;
border:outset;
margin: auto;
padding: 5px 20px 0px 20px;
height:100%;
font-size:medium;
}
.pied{
position: absolute;
bottom:0;
}
.mail a {
display:block;
width:180px;
line-height:40px;
text-align:center;
vertical-align:middle;
background:url(img/mail.png) no-repeat;
color:black;
text-decoration:none;
position: fixed;
float:left;
top:93%;
z-index: 2;
margin: 0px 0px 0px 15%;
bottom:0;
}
.mail a:hover {
background:url(img/mail2.png) no-repeat;
text-decoration: underline;
}
.cv a {
display:block;
width:180px;
line-height:40px;
text-align:left;
vertical-align: left;
background:url(img/cv.png) no-repeat;
background-position:140px 4px;
color:black;
text-decoration:none;
position: fixed;
bottom:0;
top:93%;
z-index: 2;
margin: 0px 0px 0px 70%;
bottom:0;
padding:0px 0px 0px 0px;
}
.cv a:hover {
background:url(img/cv.png) no repeat;
text-decoration: underline;
}
.haut, .bas {
height:60px;
width:60px;
position:fixed;
z-index:1;
}
.haut{
top:89.5%;
margin:0px 0px 0px 92%;
}
.bas {
top: 89.5%;
margin: 0px 0px 0px 2.5%;
}