Como colocar Menu e rodapé fixo?

HTML

CSS

09/11/2016

Hello people, estou tentando fazer um menu e rodapé fixo, mas não tenho nenhuma ideia de onde devo começar. podem por favor dar-me uma ideia.
Ramon Barbosa

Ramon Barbosa

Curtidas 0

Melhor post

Michael Batista

Michael Batista

09/11/2016

algo assim?
	<html>
	<head>
	<style>
	* {
		Padding: 0px;
		Margin: 0px;
	}
	#header_global{
		width: 100%;
	}
	#header{
		width: 1020px;
		height: 100px;
		margin-top: 0;
		margin-right: auto;
		margin-bottom: 0;
		margin-left: auto;
		background-color: #333;
	}
	#content_global{
		width: 100%;
	}
	#content{
		width: 1020px;
		height: 1000px;
		margin-top: 0;
		margin-right: auto;
		margin-bottom: 0;
		margin-left: auto;
		background-color: #777;
	}
	#footer_global{
		width: 100%;
		position: fixed;
		bottom: 0;
		background-color: #eee;
	}
	#footer{
		width: 1020px;
		height: 50px;
		margin-top: 0;
		margin-right: auto;
		margin-bottom: 0;
		margin-left: auto;
		background-color: #aaa;
		text-align: center;
		
	}
	</style>
	</head>
	<body>
	
		<div id="header_global">
			<div id="header">
				<div id="menu" style="width: 300; height: 50; background-color: #f00; color: fff;
				text-align: center; float: right; position: fixed;">MENU</div>
			</div>
		</div>
		
		<div id="content_global">
			<div id="content"></div>
		</div>
		
		<div id="footer_global">
			<div id="footer"> RODAPE</div>
		</div>
		
	</body>
	</html>
GOSTEI 2

Mais Respostas

Ramon Barbosa

Ramon Barbosa

09/11/2016

Sim sim, ajudou bastante obrigado!
GOSTEI 0
Diego Silva

Diego Silva

09/11/2016

Só para reforçar, a propriedade "position" com o valor "fixed", é que fazem isso para você
GOSTEI 0
Tiago Dias

Tiago Dias

09/11/2016

position: fixed

Isso resolve seu problema Ramon
GOSTEI 0
POSTAR