Problème fond

Hug0x5 Messages postés 2 Date d'inscription   Statut Membre Dernière intervention   -  
Hug0x5 Messages postés 2 Date d'inscription   Statut Membre Dernière intervention   -
Bonjour,

je voudrais savoir comment enlever les bordures qui gâchent le fond de la page sur les bords de gauche et de droite, si quelqu'un pouvait m'éclairer ce serait très sympathique.
Merci d'avance !

html :

<!doctype html> 
<html>
<link rel="stylesheet" type="text/css" href="style.css"> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
 <head>
  <div id=debut>
   <h1>Mon Curriculum Vitae</h1>
  </div>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <style>
  .parallax {
      background-image: url("parallaxmieux.jpg");
      min-height: 200px;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
  }
  </style>
 </head>
 <body>
  <div class="parallax"></div>
  <div id=infos>
   <p>--------</p>
   <p>------------</p>
   <p>--------------</p>
   <p>------------------</p>
   <p>-----------------</p>
   <p>-----------------------------</p>
   <p>-------------------------</p>
  </div>
 </body>
</html>


css :

h1{
 font-family: Arial;
 font-size: 325%;
 font-weight: 525;
 color: #E6E6E6;
}
p{
 font-family: Arial;
 font-size: 160%;
 font-weight: 525;
 color: #F5A9A9;
}
a{
 font-family: Arial;
 font-size: 160%;
 font-weight: 525;
 color: #0000FF;
}
h2{
 text-align: right;
 font-family: Arial;
 font-size: 160%;
 font-weight: 525;
 color: #F5A9A9;
}
div#debut{
 background-image: url("terre.jpg");
}
body{
 background-image: url("terre.jpg");
}
/*<meta name="viewport" content="width=device-width, initial-scale=1"> 
<body background="terre.jpg"> */



Configuration: Windows / Chrome 71.0.3578.80
A voir également:

1 réponse

Code_Louis_TV Messages postés 4 Date d'inscription   Statut Membre Dernière intervention  
 
Salut,
Tu souhaiterais que ton site web prenne toute la largeur si j'ai bien compris c'est ça ?

Code louis
0
Hug0x5 Messages postés 2 Date d'inscription   Statut Membre Dernière intervention  
 
Salut,
Juste ces bords sinon mon site prend déjà toute la page.

0