2
I am creating a gallery on my site using html and formatting in css, I put each image in a div and used the tag float so that in the gallery view one image would be next to the other. But this getting a "white" space. Below follows my css formatting:
.galeria-foto {
background: #ffffff;
width:265px;
height:250px;
float:left;
margin:25px;
padding: 10 auto;
}
That blank space is probably because of
margin:25px;
. You can join HTML to see the problem live?– Sergio
The problem was in the external spacing. It has been solved, thank you.
– Amanda Simões