I don't see your HTML, but it looks like you're inside a table layout as well. If that is the case, then all content is centered horizontally by default. If you don't want that, you have to do something like this
.some-class {
vertical-align: top;
}
It works better if you would share a jsfiddle link for example. This way we can also see how your HTML and CSS is structured.