I want to have 3 divs aligned inside a container div, something like this:
[[LEFT] [CENTER] [RIGHT]]
Container div is 100% wid
You've done it correctly, you only need to clear your floats. Simply add
overflow: auto;
to your container class.