bonjour,
voila pour mon site, je met une image en arriere plan en css. Je voudrais que celle-ci s'adapte au différente résolution.
Comment je peux faire.
Merci.
Voila mes différents fichiers.
essai.html:
essai.css:
Modifié par freeman43 (04 Nov 2009 - 23:01)
voila pour mon site, je met une image en arriere plan en css. Je voudrais que celle-ci s'adapte au différente résolution.
Comment je peux faire.
Merci.
Voila mes différents fichiers.
essai.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
<link rel="stylesheet" type="text/css" href="essai.css" />
</head>
<body>
<div id="logo">
<p><img src="LOGOessai.gif" width="100%"/></p>
<p> </p>
</div>
</body>
</html>
essai.css:
/* CSS Document */
body{
background-image:url(page.gif);
background-repeat:no-repeat;
}
div#logo{
height:100%;
width:90%;
}
Modifié par freeman43 (04 Nov 2009 - 23:01)