I have a basic issue.
I want two div's next to each other. I would usually do this with a display:block;
and a float:left;
on both elements.
What I try to do now is display:inline-block;
and a width:60%
for the left div and a width:40%
for the right div.
The problem is that the div's won't align because one of the is to big. If I reduce one in size it works but then there is a lot of space around the second div.
Here is a Fiddle:
Can anyone see what I do wrong?
M.