Jump to content
  • 0

Макет в одну колонку


Delat
 Share

Question

Не получается сверстать макет где "шапка" была бы с position: fixed; А сам макет с шапкой, контентом и футером растягивался бы от 980px до 1200px. Высота основного блока (class=content) с контентом растягивается очень сильно, вылазиет справа авто прокрутка - здесь тоже что-то делаю не так.

<!DOCTYPE html><html><head><meta charset="Windows-1251"><title>Тест</title><meta name="description" content=""><meta name="keywords" content=""><link rel="icon" href="favicon.ico" type="image/x-icon"><link rel="stylesheet" media="all" href="style/css.css"><link href='http://fonts.googleapis.com/css?family=Exo+2:400,900&subset=cyrillic' rel='stylesheet' type='text/css'></head><body>	<div id=container>	<header>		   logo	</header><section class=content>		    123<br>    123<br></section><footer>		footer</footer></div></body></html>
html, body {height: 100%; margin: 0; padding: 0}header, section, footer {display:block}#container {	height: 100%;	position: relative;	max-width: 1200px;	min-width:980px;	margin: 0 auto;}header {	height: 100px;	position: fixed;		background: #ff0;}section.content {	height: 100%;	background-color: green;	padding-bottom: 60px;   /* Высота футера*/}footer {	position: absolute;	bottom: 0;	width: 100%;	height: 60px; /* Высота футера */;	background: #6cf;}
Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0
section.content {	padding-bottom: 60px;   /* Высота футера*/}

А если это убрать?

 

да, убрал, футер стал как надо, только вот шапка с свойством position:fixed не растягивается до ширины родителя http://joxi.ru/_HYeVIwyTJDoAlje7QU

Link to comment
Share on other sites

  • 0

Разобрался с header, но вот с футером не получается, прошу помощи )) ! Футер прижал, но получается полоса прокрутки (разрешение экрана - 1366х768) http://joxi.ru/KIQiVIwyTJDrAoIef04

 

http://jsfiddle.net/mg1oqkmh/

<!DOCTYPE html><html><head><meta charset="Windows-1251"><title>C</title><meta name="description" content=""><meta name="keywords" content=""><link rel="icon" href="favicon.ico" type="image/x-icon"><link rel="stylesheet" media="all" href="style/css.css"><link href='http://fonts.googleapis.com/css?family=Exo+2:400,900&subset=cyrillic' rel='stylesheet' type='text/css'></head><body>	<div id=container>        <header>            logo       </header><section class=content>		    123<br>    123<br>    123<br>    123<br>    123<br>    123<br>    123<br>    123<br>    123<br></section><footer>        footer</footer></div><!-- end container --></body></html>
html, body {height: 100%; margin: 0; padding: 0}header, section, footer {display:block}#container {	height: 100%;	position: relative;	max-width: 1200px;	min-width:980px;	margin: 0 auto;}header {	border-top: 3px solid green;	border-bottom: 3px solid green;	max-width: 1200px;        width: 100%;	min-width: 980px;	position: fixed;	z-index: 1;	height: 105px;	background-color: #fff;}section.content {	min-height: 100%;	padding-top: 105px;	position: relative;	background-color: green;	padding-bottom: 100px;   /* Высота футера*/}footer {height:100px;margin-top: -100px;position:relative;background: #6cf;}
Edited by Delat
Link to comment
Share on other sites

  • 0

надо задать

section.content{box-sizing: border-box;}

также пофиксил вашу проблему с хедером http://jsfiddle.net/mg1oqkmh/3/

сузил ширину до 400рх для наглядности

при небольшом количестве контента появляется scroll http://joxi.ru/aqwjVIwyTJBxeed-4DM  Первоначально при загрузки страницы футер не видно

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy