28172 sujets

CSS et mise en forme, CSS3

Bonjour à tous.
J'ai un soucis sur ma page: sur mon ordi (Mozilla, I.E, Safari, etc...)elle s'affiche convenablement (centrée), mais sur mon Ipad ou mon smartphone Android j'observe que tout et décalé à gauche laissant une marge uniquement à droite.
Je pense que cela doit venir de la mise en forme générale dont je vous laisse un aperçu.

La forme de mon html :

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style/style.css" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Natation - La Ciotat - Cours à domicile</title>
<meta name="Description" content="Maître Nageur à domicile,etc...">
<link rel="icon" type="image/png" href="images/favicon.png" />
<!--[if IE]>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico"/>
<![endif]-->
</head>
<body>
<div id="bloc_page">
...CONTENU DE LA PAGE...
</div>
</body>
</html>

Le CSS correspondant :

#bloc_page
{
width: 1000px;
margin: auto;
}
/*fond de page*/
body
{
background-image: url('../images/background.jpg');
background-attachment: fixed;
}

MERCI D'AVANCE POUR VOTRE AIDE
Lorenz0
Bonjour,

Je doute que ceci ne convienne aux affichages réduits
#bloc_page
{
width: 1000px;
Smiley hum
Modifié par Greg_Lumiere (17 May 2017 - 15:27)