2
When I put an image it automatically comes with a spacing above and below the image of approximately 5px, I wonder how to remove this spacing I tried to put border: 0px and margin: 0px and did not solve.
<figure>
<figcaption>Curso HTML5</figcaption>
<img src="imagens/html5.png" alt="Imagem do html5" title="Curso html5">
</figure>
So I did that and did not resolve continued with the margin above and below more I managed to solve like this... figure { width: 960px; height: 498px; margin: 0; } Ai disappeared the margins, Thanks!
– wDrik