Hi, my query is how I delete the blanks in between, the navigation menu and the article title div we can put them together unless you remove the height property of the body. and I can not do that since I have the sticky footer nose how to fix this.
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : 22-ago-2018, 21:07:39
Author : Ricardo
*/
* {
margin: 0;
padding: 0;
}
/*html {
height: 100%;
}
body {
margin: 0;
padding: 0;
height:100vh;
display: flex;
flex-direction: column;
}*/
body {
height: 100%;
}
.contenedor {
margin: 0;
padding: 0;
height:100vh;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.menu {
background-color: orange;
height: 25px;
border: 2px solid yellow;
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.menu a {
text-decoration: none;
}
section {
background-color:red;
border: 2px solid orange;
width: 100%;
height: auto;
}
.imagenes {
background-color: orange;
width: 100%;
}
footer {
align-self:flex-end;
border: 2px solid green;
width: 100%;
height: 50px;
}
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html lang="es">
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="contenedor">
<nav class="menu">
<header class="logo"><img src="">LOGO</header>
<a href="">Inicio</a>
<a href="">Proyectos</a>
<a href="">Contacto</a>
<a href="">Equipo</a>
</nav>
<section>
<article>
<header>Titulo del articulo</header>
</article>
</section>
<div class="imagenes">
ACA IMAGENES
</div>
<footer>
<p>ola</p
</footer>
</div>
</body>
</html>