Mettre une image en arrière plan
Fermé
wouah!!
-
28 juil. 2016 à 10:53
Grandasse_ Messages postés 924 Date d'inscription jeudi 28 janvier 2010 Statut Membre Dernière intervention 27 avril 2023 - 28 juil. 2016 à 14:07
Grandasse_ Messages postés 924 Date d'inscription jeudi 28 janvier 2010 Statut Membre Dernière intervention 27 avril 2023 - 28 juil. 2016 à 14:07
A voir également:
- Mettre une image en arrière plan
- Arrière plan - Guide
- Youtube en arrière plan - Guide
- Flouter arrière-plan appel vidéo whatsapp android - Guide
- Arriere plan pc - Guide
- Supprimer l'arrière plan d'une image paint - Guide
4 réponses
Synerz
Messages postés
1233
Date d'inscription
mercredi 5 juin 2013
Statut
Membre
Dernière intervention
27 décembre 2017
116
28 juil. 2016 à 10:56
28 juil. 2016 à 10:56
Salut,
Dans ton page css tu fait comme ça :
et en html :
Dans ton page css tu fait comme ça :
background-image: url("../images/tonimage.jpg");
et en html :
<body style="background-image: url("../images/tonimage.jpg");">
voici comment j'ai mis ça dans le css
<style>
body {
font:100% ARIAL BLACK;
color: black; background-image: url("../images/php elephant.jpg");
}
h1{
color:black;
text-align:center;
}
h1{
color:black;
text-align:center;
}
#entete{}
#syscolob {
width:20%;
background-color:PeachPuff;
float:right;
height:80% ;
margin-right:10%;
}
#centre{
padding: 35%;
background: purple;
width :auto;
color:white;
margin-left:10%;
margin-right:10%;
}
#footer{
position: absolute;
clear : both;
width : 78.95%;
height:20% ;
background-color:DarkGoldenrod ;
text-align:center;
margin-left:9%;
margin-right:10%;}
</style>
<style>
body {
font:100% ARIAL BLACK;
color: black; background-image: url("../images/php elephant.jpg");
}
h1{
color:black;
text-align:center;
}
h1{
color:black;
text-align:center;
}
#entete{}
#syscolob {
width:20%;
background-color:PeachPuff;
float:right;
height:80% ;
margin-right:10%;
}
#centre{
padding: 35%;
background: purple;
width :auto;
color:white;
margin-left:10%;
margin-right:10%;
}
#footer{
position: absolute;
clear : both;
width : 78.95%;
height:20% ;
background-color:DarkGoldenrod ;
text-align:center;
margin-left:9%;
margin-right:10%;}
</style>
Grandasse_
Messages postés
924
Date d'inscription
jeudi 28 janvier 2010
Statut
Membre
Dernière intervention
27 avril 2023
594
28 juil. 2016 à 14:07
28 juil. 2016 à 14:07
Salut,
Le nom de ton image est "php elephant.jpg". C'est une mauvaise idée de mettre des espace dans un nom de fichier pour faire du web. Ça devient vite pénible parce que leurs liens doivent s'écrire "php%20elephant.jpg" dans l'URL, etc.
Enlève les espace, c'est plus simple. Tu mets rien ou bien un underscore «_» comme tu veux.
Le nom de ton image est "php elephant.jpg". C'est une mauvaise idée de mettre des espace dans un nom de fichier pour faire du web. Ça devient vite pénible parce que leurs liens doivent s'écrire "php%20elephant.jpg" dans l'URL, etc.
Enlève les espace, c'est plus simple. Tu mets rien ou bien un underscore «_» comme tu veux.