Bonsoir!
Je viens de commencer un document. Et impossible d'enlever la margin du body au niveau margin-top...
J'étais persuadé qu'il suffisait de mettre un margin et padding 0 sur le body ? Mais apparemment non ..
Je viens de commencer un document. Et impossible d'enlever la margin du body au niveau margin-top...
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="fr"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="fr"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="fr"> <![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="fr"><!--<![endif]-->
<head>
<meta charset="utf-8"/>
<title>bla</title>
<link rel="stylesheet" media="screen" href="css/styles.css"/>
<script src="js/modernizr.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div class="header">
<div class="langues">
<ul>
<li><a href="#">Français</a></li>
<li><a href="#">Neederlands</a></li>
<li><a href="#">English</a></li>
<li><a href="#">Deutsche</a></li>
</ul>
</div>
<div class="logo-titre">
<p><img src="img/logo.png" width="100" height="97" alt="bla"></p>
<h1>Blablabla</span></h1>
</div>
<div class="menu">
<ul>
<li><a href="#">La maison</a></li>
<li><a href="#">Contact & Plans</a></li>
<li><a href="#">Photos</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
@import "fonts.css";
article, aside, details, figcaption, figure, footer, header, hpgroup, menu, nav, section{
display: block;
}
.clearfix:before, .clearfix:after{
content: " ";
display: table;
color: #000000;
}
.clearfix:after{
clear: both;
}
.lt-ie8 .clearfix{
height: 1%;
}
body{
background: #bbb1a0 url(../img/light_toast.png) 0 0 repeat;
font: normal 75%/1.5 Helvetica, Arial, sans-serif;
color: #000;
margin: 0;
padding: 0;
}
.container {
width: 100%;
/* min-width: 800px;
max-width: 1600px;*/
margin: 0 auto;
}
.header {
margin: 0;
padding: 0;
}
.langues
{
height: 20px;
background: red;
}
.langue ul {
text-decoration: none;
}
.langues li {
list-style: none;
float: left;
}
J'étais persuadé qu'il suffisait de mettre un margin et padding 0 sur le body ? Mais apparemment non ..