Hi what happens is that I want to put a div
below the other but as you can see in the code below it is placed on the one above. What do you recommend for me to put immediately down without leaving any space?
#inicio
{
background-color:#020213;
color:white;
min-width :100%;
position:absolute;
margin-left:auto;
margin-right:auto;
margin-top:auto;
left:0; right:0; top:0;
}
ul {
background-color:red;
position:absolute;
top:0; left:0;
}
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="hola.css"/>
<title> Cine </title>
</head >
<body>
<div id="inicio">
<h1>
<p>hola</p>
</div>
<div id="hola">
<ul>
<
<li><a href="#">inicio</a></li>
<li><a href="#">inicio</a></li>
<li><a href="#">inicio</a></li>
<li><a href="#">inicio</a></li>
<li><a href="#">inicio</a></li>
</ul>
</div>
</body>