All of the elements within .track-container should line up nice and in line, each side by side, constrained by the 200px height they\'ve been given with no weir
.track-container
You need to add vertical-align:top to those two elements:
.album-artwork, .track-info { vertical-align:top; }
jsFiddle example
The default vertical alignment is baseline, but you are looking for top instead.