I've got a container div
which has property width: auto;
. This container has children elements which have property float: left;
. The normal behaviour is to align all the elements continously until one element overflows the container div
. In that case, that child element will be placed under the other children elements. I'm trying to force children elements to expand container div
even if it overflows. I want all the children elements to be aligned.
How could I achieve this?