Bonjour,
Je débute en CSS et je bloque sur un petit truc très important mais qui me rend dingue.
Je souhaiterais que toutes les pages de mon site soit centrées pour tous les navigateurs mais
je ne comprends pas bien la manip à faire dans le code CSS.
Si vous avez la gentillesse de lire ces quelques lignes de codes et de m'aiguiller vous ferez mon bonheur!
Merci
Et le code CSS
Modifié par Steeve0206 (17 Mar 2015 - 18:31)
Je débute en CSS et je bloque sur un petit truc très important mais qui me rend dingue.
Je souhaiterais que toutes les pages de mon site soit centrées pour tous les navigateurs mais
je ne comprends pas bien la manip à faire dans le code CSS.
Si vous avez la gentillesse de lire ces quelques lignes de codes et de m'aiguiller vous ferez mon bonheur!
Merci
<!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 name="google-site-verification" content="rJTD3zjavj4AKD0IxpaIjQ5d4071jauwnIir7CeRwEQ" />
<title>Miam</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" align="center">
<div id="conteneur">
<!-- Save for Web Slices (site.psd - Slices: index_01, index_02, index_03, index_04, index_05, index_06, index_07, index_08, index_09) -->
<table id="Tableau_01" width="2000" height="950" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="7"><a href="http://www.miamrestaurant.fr">
<img src="http://www.miamrestaurant.fr/index_01.jpg" width="2000" height="100" alt=""></a></td>
</tr>
<tr>
<td>
<img src="http://www.miamrestaurant.fr/index_02.jpg" width="585" height="31" alt=""></td>
<td><a href="http://www.miamrestaurant.fr/menu">
<img src="http://www.miamrestaurant.fr/index_03.jpg" width="107" height="31" alt=""></a></td>
<td>
<img src="http://www.miamrestaurant.fr/index_04.jpg" width="191" height="31" alt=""></td>
<td>
<img src="http://www.miamrestaurant.fr/index_05.jpg" width="200" height="31" alt=""></td>
<td>
<img src="http://www.miamrestaurant.fr/index_06.jpg" width="125" height="31" alt=""></td>
<td><a href="http://www.miamrestaurant.fr/contacts">
<img src="http://www.miamrestaurant.fr/menu_07.jpg" width="162" height="31" alt=""></a></td>
<td>
<img src="http://www.miamrestaurant.fr/index_08.jpg" width="630" height="31" alt=""></td>
</tr>
<tr>
<td colspan="7">
<img src="http://www.miamrestaurant.fr/index_09.jpg" width="2000" height="819" alt=""></td>
</tr>
</table>
</div>
<!-- End Save for Web Slices -->
</body>
</html>
Et le code CSS
@charset "UTF-8";
body
{
text-align: center;
}
#conteneur {
margin-left: auto;
margin-right: auto;
text-align: left;
width: 50%; }
Modifié par Steeve0206 (17 Mar 2015 - 18:31)