hola,tengo una etiqueta llamada
section id=banner y otra
section id=body.En la
section id=body le agregue una etiqueta
div id=slider ,al agregar ese div me genera un espacio en blanco de 5cm aprox entre los dos section.Como puedo hacer para q el
div id=slider aparesca sobre el section id =body y se elimine ese espacio en blanco q se genera
Cita: <!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Trabajos</title>
<link rel="stylesheet" href="style/index_style.css"> <!-- carpeta donde se encuentra la hoja -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src='js/script.js'></script>
<script src="js/bjqs.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Pathway+Gothic+One' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<nav>
<ul>
<a href="#abajo"><li id="inicio">inicio</li>
</a>
<a href='http://www.keyquotes.es'><li>Busqueda</li>
</a>
<a href='#abajo'><li id="reg">Registro</li>
</a><!-- fijarse bien q onda -->
</ul>
<img id='logo'src='pictures/logo.png'>
<ul>
<a href='http://www.keyquotes.es'><li>Inicio</li>
</a>
<a href='http://www.keyquotes.es'><li>Busqueda</li>
</a>
<a href='http://www.keyquotes.es'><li>Imagenes</li>
</a> <!-- fijarse bien q onda -->
</ul>
</nav>
</header>
<section id='banner'>
</section>
<a id="abajo"> <section id='body'> </a>
<div id="slider">
<ul class="bjqs">
<li>
<img src="pictures/1.jpg" alt="" title="Este mensaje se ve automaticamente si se incluye en el tag title de la imagen" />
</li>
<li>
<img src="pictures/2.jpg" alt="" title="El aspecto de este texto se modifica con CSS en la clase bjqs-caption" />
</li>
<li>
<img src="pictures/3.jpg" alt="" title="Para eliminarlo, simplemente remover el tag title en la imagen" />
</li>
<li>
<img src="pictures/3.jpg" alt="" title="Para eliminarlo, simplemente remover el tag title en la imagen" />
</li>
</ul>
</div>
/section>
</body>
</html>