malina95
Мастер
Дата регистрации:
15.07.2012 07:13:44
Сообщений: 208
У меня почему то у страницы появляются неизвестные отступы - примерно 10-15 пикс.!Особенно это видно в шапке сайта.
ПОМОЖЕТЕ МНЕ???
Вот HTML
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet" type="text/css" media="all" />
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<meta name="description" content="Описание страницы." />
<meta name="keywords" content="ключевые слова страницы" />
<title>Верстка</title>
</head>
<body>
<div id="header">
<img src="header.jpg" alt="header" title="Главная страница сайта" width="100%">
</div>
<div id="content">
<div id="left">Левые блоки
</div>
<div id="right">Правые блоки
</div>
<div id="center">Центральная часть
</div>
</div>
<div class="clear">
</div>
<div id="footer">Содержимое подвала
</div>
</body>
</html>
Вот CSS
body {
width:100%;
height:100%;
}
#header {
margin:0;
padding:0;
width:100%;
}
#left {
float: left;
width: 200px;
}
#right {
float: right;
width: 200px;
}
#center {
margin-left: 200px;
margin-right: 200px;
}
.clear {
clear: both;
}
#footer {
margin: 0 auto;
position: absolute;
bottom: 0;
height: 100px;
}