I have the following problem: I want to have three images in the same line, without margins in between. The problem is that when using display:inline or display:inline-block vertical and horizontal white spaces are generated between the images.
div img{
width: 33.3333%;
display: inline-block;
}
You can see the problem in the demo.
I know that with float:left I can solve the problem, but I would like to avoid this, because I don't like to use this unless is very necessary.
Thanks!