Colocar elemento no topo da página
Porque mesmo com a marcação e estilos abaixo e não consigo colocar o elemento <p> no topo da página??? Somente definindo no arquivo de estilo, "top: -17px;" é que consigo. Poderiam me explicar?
<!DOCTYPE html>
<html>
<head>
<title>Página Exemplo</title>
<link rel="stylesheet" type="text/css" href="styles/style.css" media="screen">
<meta charset="UTF-8">
</head>
<body>
<div id="teste">
<p>teste</p>
</div>
</body>
</html>
body {
position: relative;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background-color: orange;
}
#teste {
background-color: green;
}Discussão (5)
Carregando comentários...